Hi, my company uses prtg "ssh disk free" to monitor Ubuntu snap partitions. Snap partitions are (by default) very small, so fill up quickly and alarm during out of hours. I am trying to find a way to prevent snap partitions being monitored.
I have tried modifying the 'df' that runs on he server with an alias:
- The "ssh disk free" check performs the periodic command: df -TP -x tmpfs -x devtmpfs -x debugfs
I created a new user and a bash alias on the client server for df: alias df="df -x squashfs"
I was attempting to modify df so it wouldn't display squashfs. the df would be running the command df -TP -x tmpfs -x devtmpfs -x debugfs -x squashfs
However, the logs generated have not changed.
Can anyone advise me? Thanks
Add comment