Skip to content

Instantly share code, notes, and snippets.

@rwarren
Created May 22, 2021 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwarren/b70b5fcce609f8c7e3753960b766db4d to your computer and use it in GitHub Desktop.
Save rwarren/b70b5fcce609f8c7e3753960b766db4d to your computer and use it in GitHub Desktop.
Stripped version of my telegraf.conf for chia
[global_tags]
srv_loc="home"
srv_vtype="real"
srv_purpose="chia-plotter"
srv_owner="internal"
[agent]
interval = "60s"
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = "5s"
flush_interval = "10s"
flush_jitter = "5s"
precision = ""
hostname = ""
omit_hostname = false
[[outputs.influxdb]]
urls = ["http://your.endpoint.here:1234"]
database = "telegraf"
retention_policy = ""
write_consistency = "any"
timeout = "5s"
username = "username"
password = "password"
[[inputs.cpu]]
percpu = false
totalcpu = true
collect_cpu_time = false
report_active = false
[[inputs.disk]]
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"]
[[inputs.diskio]]
skip_serial_number = false
[[inputs.kernel]]
[[inputs.mem]]
[[inputs.processes]]
[[inputs.swap]]
[[inputs.system]]
[[inputs.net]]
[[inputs.sensors]]
[[inputs.smart]]
path_smartctl = "/usr/sbin/smartctl"
path_nvme = "/usr/sbin/nvme"
enable_extensions = ["auto-on"]
use_sudo = true
attributes = true
[[inputs.temp]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment