You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EDT | CORE | WARN | (pkg/collector/corechecks/system/disk/disk_nix.go:68 in collectPartitionMetrics) | Unable to get disk metrics of /run/docker/netns/[id] mount point: permission denied
Describe what happened:
After upgrade to 7.32.4 logs are filled with spam from disk_nix.go messages hundreds of the same every minute
Describe what you expected:
I expect logs to be clear as in version 6.18
Adding following blacklists configuration does not help:
Hi 👋 thanks for opening the issue. The log line you provided seems to suggest that you're using datadog-iot-agent instead of datadog-agent (the simplified Go version of the check is running instead of the full Python version). Is this correct and intentional?
In between 6.18 and 7.32 we renamed the *_blacklist arguments to *_exclude, so the configuration value you're using will not work in 7.32.4. Now, the way to fix this is slightly different for Python and Go versions of the check.
For the regular Python version of the check in Agent 7.32.4, as documented, you should use mount_point_exclude instead of mount_point_blacklist.
Assuming you want to continue using the Go version of the check, in 7.32.x you should use excluded_mountpoint_re, which accepts only a single string value as a regexp (so to transform what you have, you would have to use something like <first_exclude>|<second_exclude>|<third_exclude>).
Output of the info page (if this is a bug)
Describe what happened:
After upgrade to 7.32.4 logs are filled with spam from disk_nix.go messages hundreds of the same every minute
Describe what you expected:
I expect logs to be clear as in version 6.18
Adding following blacklists configuration does not help:
/etc/datadog-agent/conf.d/disk.d/conf.yaml
init_config:
instances:
file_system_blacklist:
mount_point_blacklist:
Steps to reproduce the issue:
Install 7.32.4 on Linux with Docker daemon running.
Additional environment details (Operating System, Cloud provider, etc):
Debian Linux / Docker
The text was updated successfully, but these errors were encountered: