1#                                    __   __  __
2#                                    \ \ / / / /
3#                                     \ V / / /
4#                                      \_/  \/
5#
6#                                    V E C T O R
7#                                   Configuration
8#
9# ------------------------------------------------------------------------------
10# Website: https://vector.dev
11# Docs: https://vector.dev/docs/
12# ------------------------------------------------------------------------------
13
14# Note: A full config spec is located at ./vector.spec.toml and examples
15#       in the ./examples folder.
16
17data_dir = "/var/lib/vector"
18
19# Input data. Change me to a valid input source.
20[sources.in]
21  type = "stdin"
22
23# Output data
24[sinks.out]
25  inputs   = ["in"]
26  type     = "console"
27  encoding = "text"
28