69 lines
1.7 KiB
TOML
69 lines
1.7 KiB
TOML
# __ __ __
|
|
# \ \ / / / /
|
|
# \ V / / /
|
|
# \_/ \/
|
|
#
|
|
# V E C T O R
|
|
# Configuration
|
|
#
|
|
# ------------------------------------------------------------------------------
|
|
# Website: https://vector.dev
|
|
# Docs: https://vector.dev/docs
|
|
# Chat: https://chat.vector.dev
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Change this to use a non-default directory for Vector data storage:
|
|
# data_dir = "/var/lib/vector"
|
|
|
|
# Random Syslog-formatted logs
|
|
#>GNUNUX
|
|
#[sources.dummy_logs]
|
|
#type = "demo_logs"
|
|
#format = "syslog"
|
|
#interval = 1
|
|
[sources.journal]
|
|
type = "journald"
|
|
|
|
{% if general.prometheus.prometheus_server_address %}
|
|
[sources.metrics]
|
|
type = "host_metrics"
|
|
{% endif %}
|
|
#<GNUNUX
|
|
|
|
# Parse Syslog logs
|
|
# See the Vector Remap Language reference for more info: https://vrl.dev
|
|
#>GNUNUX
|
|
#[transforms.parse_logs]
|
|
#type = "remap"
|
|
#inputs = ["dummy_logs"]
|
|
#source = '''
|
|
#. = parse_syslog!(string!(.message))
|
|
#'''
|
|
#<GNUNUX
|
|
|
|
# Print parsed logs to stdout
|
|
#>GNUNUX
|
|
[sinks.vector]
|
|
type = "vector"
|
|
inputs = ["journal"]
|
|
address = "{{ general.vector.ip_address }}:8686"
|
|
|
|
{% if general.prometheus.prometheus_server_address %}
|
|
[sinks.prometheus]
|
|
type = "prometheus_exporter"
|
|
inputs = ["metrics"]
|
|
address = "{{ general.prometheus.prometheus_ip_address }}:9090"
|
|
#{% endif %}
|
|
#<GNUNUX
|
|
|
|
# Vector's GraphQL API (disabled by default)
|
|
# Uncomment to try it out with the `vector top` command or
|
|
# in your browser at http://localhost:8686
|
|
#[api]
|
|
#enabled = true
|
|
#address = "127.0.0.1:8686"
|
|
#>GNUNUX
|
|
[api]
|
|
enabled = true
|
|
address = "127.0.0.1:8686"
|
|
#<GNUNUX
|