#Change Log This project adheres to Semantic Versioning.
This CHANGELOG follows the format listed at Keep A Changelog
- check-disk-usage.rb: Add option to include only certain mount points
- check-disk-usage.rb fails on Windows with sys-filesystem (1.1.4)
- bump sys-filesystem to 1.1.5
- check-disk-usage.rb: Add ignore option to exclude mount point(s) based on regular expression
- metrics-disk.rb: Add ignore and include options to exclude or include devices
- check-disk-usage.rb: Don't blow up when unable to read a filesystem
- Remove dependency on
filesystem
gem
- Adds Ignore option(s) to check-disk-usage.rb
- Adaptive thresholds
This borrows from check_mk's "df" check, which has the ability to adaptively adjust thresholds for filesystems based on their sizes.
For example, a hard threshold of "warn at 85%" is quite different between small filesystems and very large filesystems - 85% utilization of a 20GB filesystem is arguably more serious than 85% utilization of a 10TB filesystem.
This uses check_mk's original alorithm to optionally adjust the percentage thresholds based on size, using a "magic factor", a "normalized size", and a "minium size to adjust".
The magic factor defaults to '1.0', which will not adjust thresholds. The minimum size defaults to '100' (GB). Filesystems smaller than this will not be adapted.
check_mk's documentation has a lot more information on this, including examples of adjustments based on the magic factor: https://mathias-kettner.de/checkmk_filesystems.html
- general cleanup
- updated sensu-plugin gem to 1.2.0
##[1.0.0] - 2015-07-05
- changed metrics filenames to conform to std
- updated Rakefile to remove cruft
- updated documentation links in README and CONTRIBUTING
- updated gemspec to put deps in alpha order
- Correct check of inodes method on object fs_info which was always returning false
- added binstubs
- removed cruft from /lib
- deployment issue
- initial release