mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
e75ae1b274
### Describe Your Changes - Use common compose.yaml file for all victorialogs setups to set version in a single place and override it on demand for each agent and protocol - Replaced multiple victorialogs instances in HA setup with single setup with `deploy.replica` parameter set - Added fluentd setup ### Checklist The following checks are **mandatory**: - [ ] My change adheres [VictoriaMetrics contributing guidelines](https://docs.victoriametrics.com/contributing/).
44 lines
1.1 KiB
Text
44 lines
1.1 KiB
Text
[agent]
|
|
interval = "10s"
|
|
round_interval = true
|
|
metric_batch_size = 1000
|
|
metric_buffer_limit = 100000
|
|
collection_jitter = "0s"
|
|
flush_interval = "10s"
|
|
flush_jitter = "0s"
|
|
precision = ""
|
|
debug = false
|
|
quiet = false
|
|
logtarget = "file"
|
|
logfile = "/dev/null"
|
|
hostname = "pop-os"
|
|
omit_hostname = false
|
|
|
|
[[inputs.cpu]]
|
|
|
|
[[outputs.loki]]
|
|
domain = "http://victorialogs:9428"
|
|
endpoint = "/insert/loki/api/v1/push?_msg_field=docker_log.msg&_time_field=@timestamp&_stream_fields=log_source,metric_type"
|
|
namepass = ["docker_log"]
|
|
gzip_request = true
|
|
sanitize_label_names = true
|
|
|
|
[[outputs.http]]
|
|
url = "http://victoriametrics:8428/api/v1/write"
|
|
data_format = "prometheusremotewrite"
|
|
namepass = ["cpu"]
|
|
[outputs.http.headers]
|
|
Content-Type = "application/x-protobuf"
|
|
Content-Encoding = "snappy"
|
|
X-Prometheus-Remote-Write-Version = "0.1.0"
|
|
|
|
[[inputs.docker_log]]
|
|
[inputs.docker_log.tags]
|
|
metric_type = "logs"
|
|
log_source = "telegraf"
|
|
|
|
[[processors.rename]]
|
|
namepass = ["docker_log"]
|
|
[[processors.rename.replace]]
|
|
field = "message"
|
|
dest = "msg"
|