Commit 57a6e17d authored by Nicolas Steinmetz's avatar Nicolas Steinmetz Committed by David McKay

Disable debug, fix default output, add mention on the readme about the fact that…

Disable debug, fix default output, add mention on the readme about the fact that inputs cannot be customised.
parent d17a173a
......@@ -2,6 +2,8 @@
[Telegraf](https://github.com/influxdata/telegraf) is a plugin-driven server agent written by the folks over at [InfluxData](https://influxdata.com) for collecting & reporting metrics. This chart runs a DaemonSet of Telegraf instances to collect host level metrics for your cluster. If you need to poll individual instances of infrastructure or APIs there is a `telegraf` chart that is more suited to that usecase.
Telegraf input cannot be customised as it aims to provide an opinionated configuration to monitor kubernetes nodes and global kubernetes monitoring.
## TL;DR
```console
......
......@@ -49,7 +49,7 @@ serviceAccount:
create: true
# The name of the ServiceAccount to use.
# If not set and create is true, a name is generated using the fullname template
#name:
# name:
## Exposed telegraf configuration
## ref: https://docs.influxdata.com/telegraf/v1.13/administration/configuration/
......@@ -65,22 +65,19 @@ config:
flush_interval: "10s"
flush_jitter: "0s"
precision: ""
debug: true
debug: false
quiet: false
logfile: ""
hostname: "$HOSTNAME"
omit_hostname: false
outputs:
# - influxdb:
# urls:
# - "http://influxdb:8086"
# database: "telegraf"
# retention_policy: ""
# timeout: "5s"
# username: ""
# password: ""
# user_agent: "telegraf"
# insecure_skip_verify: false
- file:
files:
- stdout
- influxdb:
urls:
- - "http://influxdb.monitoring.svc:8086"
database: "telegraf"
retention_policy: ""
timeout: "5s"
username: ""
password: ""
user_agent: "telegraf"
insecure_skip_verify: false
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment