License
MIT License
Use -h
flag on any command to see available usages, -w
to set warning threshold -c
to set critical threshold and -p
to print out performance data.
/opt/sensu/embedded/bin/check-memory.rb -w 2500 -c 3000
- Values in Megabytes/opt/sensu/embedded/bin/check-memory-percent.rb -w 70 -c 80
- Values in Percentages/opt/sensu/embedded/bin/check-swap.rb -w 2500 -c 3000
- Values in Megabytes/opt/sensu/embedded/bin/check-swap-percent.rb -w 70 -c 80
- Values in Percentages/opt/sensu/embedded/bin/metrics-memory.rb -s FooBar
- So metrics are now prepended with foobar, default is machine hostname.bin/check-ram.rb
Ruby does not have a good native way without the use of C extensions to grab information on memory usage (outside of running shell commands and parsing out). Because of this check-ram.rb
uses a gem called vmstat
which has a somewhat annoying dependency on a gcc to compile the C extensions. In order to not force people to install gcc if they are not using check-ram.rb
we do not install it by default, and is up to the user to make sure that they install it. This requires two steps and can vary based on your distribution and ruby set up:
gcc
. If you are on a debian based system it is located in the build-essential
package.vmstat
gem into the path that sensu gems are expected to run from:
sudo /opt/sensu/embedded/bin/gem install vmstat --no-rdoc --no-ri
or the equivalent for installing sensu gems in your configuration management systemPlease describe the reason for reporting this asset. Our moderators will be notified and will disable the asset if it is found to be inappropriate.
×