Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_filesystem_space.sh
0.9
2019-05-02
- Nagios 3.x
- Nagios 4.x
- Nagios XI
GPL
4483
File | Description |
---|---|
check_filesystem_space.sh | check_filesystem_space.sh |
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
The check_disk that comes with Nagios reported that the inodes
on AIX and Linux were constantly at 99% free, when in reality
they were far less. AIX, HP-UX, Solaris, and Linux are all
supported by this script.
This script replaces the check_disk that comes with the Nagios.
The check_disk that comes with Nagios reported that the inodes
on AIX and Linux were constantly at 99% free, when in reality
they were far less. This only reports on the amount of free space
a filesystem has reported according to df (or bdf for HP-UX).
AIX, HP-UX, Solaris, and Linux are all supported by this script.
The check_disk that comes with Nagios reported that the inodes
on AIX and Linux were constantly at 99% free, when in reality
they were far less. This only reports on the amount of free space
a filesystem has reported according to df (or bdf for HP-UX).
AIX, HP-UX, Solaris, and Linux are all supported by this script.
Reviews (1)
byjwhowell, November 18, 2019
Script works fine except that some of my servers return a % in the output from df -k. Needed to modify line 77 and change the awk statement to read:
awk '{gsub("%",""); print $2 ":" $3 ":" $4 ":" $5}'
awk '{gsub("%",""); print $2 ":" $3 ":" $4 ":" $5}'