Actions
Feature #12462
openTelegraf: Add "devfs" to ignore_fs
Status:
Pull Request Review
Priority:
Normal-package
Assignee:
Category:
Telegraf
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Description
The Netgate XG-1537 has the following disk paths at 100% utilization:
- /dev
- /var/dhcpd/dev
- /var/unbound/dev
All three of the above disks use`devfs` as the filesystem.
The current issue with the telegraf package is that when you save from the Services -> Telegraf page, it overwrites whatever you put into `/usr/local/etc/telegraf.conf` with the following:
```txt
[[inputs.disk]]
ignore_fs = ["tmpfs", "devtmpfs"]
```
The package needs to be updated to also include `devfs` in that list like so:
```txt
[[inputs.disk]]
ignore_fs = ["tmpfs", "devtmpfs", "devfs"]
```
Actions