Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
65
tools/custom_builder/testcases/issue_13592/telegraf.conf
Normal file
65
tools/custom_builder/testcases/issue_13592/telegraf.conf
Normal file
|
@ -0,0 +1,65 @@
|
|||
## Telegraf Configuration for ThinClients
|
||||
## /etc/telegraf/telegraf.conf
|
||||
|
||||
[global_tags]
|
||||
service_name = "thinclient"
|
||||
env = "prod"
|
||||
team = "planetexpress"
|
||||
|
||||
## Configuration for telegraf agent
|
||||
[agent]
|
||||
## Data input and output settings
|
||||
interval = "10s"
|
||||
round_interval = true
|
||||
metric_batch_size = 1000
|
||||
metric_buffer_limit = 10000
|
||||
collection_jitter = "0s"
|
||||
flush_interval = "10s"
|
||||
flush_jitter = "5s"
|
||||
|
||||
## Logging configuration
|
||||
debug = false
|
||||
quiet = false
|
||||
# emtpy string means log to stderr
|
||||
logfile = ""
|
||||
|
||||
## host configuration
|
||||
# if emtpty use os.hostname()
|
||||
hostname = ""
|
||||
|
||||
omit_hostname = false
|
||||
|
||||
# Configuration for sending metrics to Datadog
|
||||
[[outputs.datadog]]
|
||||
## Datadog API key
|
||||
apikey = "${datadog_secret}"
|
||||
|
||||
## Connection timeout.
|
||||
timeout = "5s"
|
||||
|
||||
|
||||
## Write URL override; useful for debugging.
|
||||
url = "${datadog_url}"
|
||||
|
||||
## Metrics to log
|
||||
|
||||
[[inputs.system]]
|
||||
name_prefix = "dg.systemengineering.thinclient."
|
||||
# default configuration; getting uptime values.
|
||||
|
||||
[[inputs.mem]]
|
||||
name_prefix = "dg.systemengineering.thinclient."
|
||||
# no configuration
|
||||
|
||||
[[inputs.disk]]
|
||||
name_prefix = "dg.systemengineering.thinclient."
|
||||
## By default stats will be gathered for all mount points.
|
||||
## Set mount_points will restrict the stats to only the specified mount points.
|
||||
mount_points = ["/"]
|
||||
|
||||
[[inputs.swap]]
|
||||
name_prefix = "dg.systemengineering.thinclient."
|
||||
## Monitoring SWAP (zswap) usage
|
||||
|
||||
## Ignore mount points by filesystem type.
|
||||
#ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"]
|
Loading…
Add table
Add a link
Reference in a new issue