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 @@ ...@@ -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](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 ## TL;DR
```console ```console
......
...@@ -49,7 +49,7 @@ serviceAccount: ...@@ -49,7 +49,7 @@ serviceAccount:
create: true create: true
# The name of the ServiceAccount to use. # The name of the ServiceAccount to use.
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
#name: # name:
## Exposed telegraf configuration ## Exposed telegraf configuration
## ref: https://docs.influxdata.com/telegraf/v1.13/administration/configuration/ ## ref: https://docs.influxdata.com/telegraf/v1.13/administration/configuration/
...@@ -65,22 +65,19 @@ config: ...@@ -65,22 +65,19 @@ config:
flush_interval: "10s" flush_interval: "10s"
flush_jitter: "0s" flush_jitter: "0s"
precision: "" precision: ""
debug: true debug: false
quiet: false quiet: false
logfile: "" logfile: ""
hostname: "$HOSTNAME" hostname: "$HOSTNAME"
omit_hostname: false omit_hostname: false
outputs: outputs:
# - influxdb: - influxdb:
# urls: urls:
# - "http://influxdb:8086" - - "http://influxdb.monitoring.svc:8086"
# database: "telegraf" database: "telegraf"
# retention_policy: "" retention_policy: ""
# timeout: "5s" timeout: "5s"
# username: "" username: ""
# password: "" password: ""
# user_agent: "telegraf" user_agent: "telegraf"
# insecure_skip_verify: false insecure_skip_verify: false
- file:
files:
- stdout
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