Created
May 22, 2021 15:47
-
-
Save rwarren/b70b5fcce609f8c7e3753960b766db4d to your computer and use it in GitHub Desktop.
Stripped version of my telegraf.conf for chia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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