TLDR David inquired about disk consumption monitoring with Telegraf and OpenObserve, Prabhat provided a sample configuration for it.
This is a sample that you can use
```# Telegraf Configuration
# Global tags can be specified here in key=value format.
[global_tags]
environment = "production"
# Configuration for telegraf agent
[agent]
interval = "5s"
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = "0s"
flush_interval = "5s"
flush_jitter = "0s"
precision = ""
debug = false
quiet = false
# Input plugins
[[inputs.cpu]]
percpu = true
totalcpu = true
collect_cpu_time = false
report_active = false
[[inputs.disk]]
ignore_fs = ["tmpfs", "devtmpfs"]
[[inputs.mem]]
[[
You can see the section ```[[inputs.disk]] ignore_fs = ["tmpfs", "devtmpfs"]```
David
Thu, 29 Jun 2023 12:53:57 UTCHow to monitor the disk consumption metric with telegraf and openobserve?