1、nz-talon 编译打包时,打包 telegraf-1.26.2 (当前最新版本) 2、内置 cpu,mem,disk ,io 等默认监控配置 3、telegraf service 名称: nz-telegraf 4、promtail service 名称改为: nz-promtail 5、nz-talon 更新时确保原有 telegraf 配置不丢失
24 lines
1.5 KiB
Plaintext
24 lines
1.5 KiB
Plaintext
# Configuration for the Prometheus client to spawn
|
|
[[outputs.prometheus_client]]
|
|
## Address to listen on.
|
|
listen = ":19273"
|
|
namepass = ["cpu", "disk", "diskio", "mem", "net", "processes", "swap", "system", "systemd_units", "kernel"]
|
|
## Metric version controls the mapping from Prometheus metrics into Telegraf metrics.
|
|
## See "Metric Format Configuration" in plugins/inputs/prometheus/README.md for details.
|
|
## Valid options: 1, 2
|
|
# metric_version = 1 ## Use HTTP Basic Authentication.
|
|
# basic_username = "Foo"
|
|
# basic_password = "Bar" ## If set, the IP Ranges which are allowed to access metrics.
|
|
## ex: ip_range = ["192.168.0.0/24", "192.168.1.0/30"]
|
|
# ip_range = [] ## Path to publish the metrics on.
|
|
# path = "/metrics" ## Expiration interval for each metric. 0 == no expiration
|
|
# expiration_interval = "60s" ## Collectors to enable, valid entries are "gocollector" and "process".
|
|
## If unset, both are enabled.
|
|
# collectors_exclude = ["gocollector", "process"] ## Send string metrics as Prometheus labels.
|
|
## Unless set to false all string metrics will be sent as labels.
|
|
# string_as_label = true ## If set, enable TLS with the given certificate.
|
|
# tls_cert = "/etc/ssl/telegraf.crt"
|
|
# tls_key = "/etc/ssl/telegraf.key" ## Set one or more allowed client CA certificate file names to
|
|
## enable mutually authenticated TLS connections
|
|
# tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"] ## Export metric collection time.
|
|
# export_timestamp = false |