From 7116ffd030c4000d1ea6ca431c1390045bfab2f4 Mon Sep 17 00:00:00 2001 From: Sergey Matochkin Date: Tue, 23 Apr 2019 17:11:09 -0400 Subject: [PATCH] Limit file systems to report --- jobs/telegraf-system/templates/config/telegraf.conf.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jobs/telegraf-system/templates/config/telegraf.conf.erb b/jobs/telegraf-system/templates/config/telegraf.conf.erb index ca3ac7a..5d00bf9 100644 --- a/jobs/telegraf-system/templates/config/telegraf.conf.erb +++ b/jobs/telegraf-system/templates/config/telegraf.conf.erb @@ -21,7 +21,8 @@ percpu = false totalcpu = true [[inputs.disk]] - ignore_fs = ["tmpfs", "devtmpfs", "none", "overlay"] + # Limit to BOSH specific mount points + mount_points = ["/", "/var/vcap/data", "/var/vcap/store"] [[inputs.diskio]] # individual partitions can be reported using "sda1" syntax devices = ["sda", "sdb", "sdc", "xvda", "xvdb", "xvdc"]