Last active
June 7, 2022 15:46
-
-
Save discarn8/78eee248546a732ec3bf98804aa137db to your computer and use it in GitHub Desktop.
Nagios Check Raspberry Pi If Throttled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /usr/lib/nagios/plugins/check_throttled | |
| --------------------------------------------------------------------- | |
| #!/bin/sh | |
| OS=$(cat /etc/os-release | grep PRETTY_NAME | awk -F"=" '{print $2}' | sed -s 's/"//g') | |
| echo $OS | |
| exit 0 | |
| pi@livingtemp:~ $ cat /usr/lib/nagios/plugins/check_throttled | |
| #!/bin/sh | |
| throttled="$(vcgencmd get_throttled)" | |
| if [[ $throttled != "throttled=0x0" ]]; then | |
| echo "WARNING: $throttled You are being throttled and likely under voltage." | |
| else | |
| echo "Voltage is good: $throttled" | |
| fi | |
| exit 0 | |
| ------------------------------------------------------------ | |
| /etc/nagios/nrpe.cfg | egrep -v '#|^$' | |
| ------------------------------------------------------------ | |
| command[check_users]=/usr/lib/nagios/plugins/check_users -w 3 -c 4 | |
| command[check_load]=/usr/lib/nagios/plugins/check_load -r -w 1.95,1.90,1.80 -c 2.10,2.00,1.90 | |
| command[check_hda1]=/usr/lib/nagios/plugins/check_disk -w 20% -c 10% -p / | |
| command[check_zombie_procs]=/usr/lib/nagios/plugins/check_procs -w 5 -c 10 -s Z | |
| command[check_total_procs]=/usr/lib/nagios/plugins/check_procs -w 250 -c 300 | |
| command[check_apt]=/usr/lib/nagios/plugins/check_apt | |
| command[check_ntp]=/usr/lib/nagios/plugins/check_ntp_time -H 1.1.1.1 -w 2 -c 5 | |
| command[checknfs]=sudo -u root /usr/lib/nagios/plugins/check_nfs.sh | |
| command[check_hw]=sudo -u root /usr/lib/nagios/plugins/check_hw | |
| command[check_os]=sudo -u root /usr/lib/nagios/plugins/check_os | |
| command[check_rasp_temp]=sudo -u root /usr/lib/nagios/plugins/check_rasp_temp -w 145 -c 165 | |
| command[check_throttled]=sudo -u root /usr/lib/nagios/plugins/check_throttled | |
| command[check_v]=sudo -u root /usr/lib/nagios/plugins/check_voltage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment