1
0
mirror of https://github.com/larsen0815/check_rasp_temp.git synced 2024-11-21 18:03:48 +01:00

Rename "check_rasp_temp" to "check_rasp_temp.sh"

This commit is contained in:
larsen0815 2023-03-13 12:48:25 +01:00
parent 1fff8f14c4
commit 03cba89c26
2 changed files with 54 additions and 54 deletions

View File

@ -5,26 +5,26 @@ Nagios-Plugin to check the CPU temperature of a Raspberry Pi
## Installation ## Installation
This example uses a Raspberry Pi with Raspbian Wheezy and a Nagios server running Debian Wheezy. This example uses a Raspberry Pi with Raspbian Wheezy and a Nagios server running Debian Wheezy.
You might want to use other thresholds, e.g. the Raspberry in our server room is normally running at ~43°C so I have set the threshold to 45°C. You might want to use other thresholds, e.g. the Raspberry in our server room is normally running at ~43°C so I have set the threshold to 45°C.
#### Download Plugin #### Download Plugin
``` ```
cd /usr/lib/nagios/plugins/ && \ cd /usr/lib/nagios/plugins/ && \
wget https://raw.githubusercontent.com/larsen0815/check_rasp_temp/master/check_rasp_temp && \ wget https://raw.githubusercontent.com/larsen0815/check_rasp_temp/master/check_rasp_temp.sh && \
chmod +x check_rasp_temp chmod +x check_rasp_temp.sh
``` ```
#### Plugin needs to be run as root #### Plugin needs to be run as root
``` ```
cat <<EOF > /etc/sudoers.d/nagios_rasp_temp cat <<EOF > /etc/sudoers.d/nagios_rasp_temp
nagios ALL=(root) NOPASSWD: /usr/lib/nagios/plugins/check_rasp_temp nagios ALL=(root) NOPASSWD: /usr/lib/nagios/plugins/check_rasp_temp.sh
EOF EOF
``` ```
#### Define NRPE command with thresholds #### Define NRPE command with thresholds
``` ```
cat <<EOF > /etc/nagios/nrpe.d/rasp_temp.cfg cat <<EOF > /etc/nagios/nrpe.d/rasp_temp.cfg
command[check_rasp_temp]=sudo -u root /usr/lib/nagios/plugins/check_rasp_temp -w 60 -c 70 command[check_rasp_temp]=sudo -u root /usr/lib/nagios/plugins/check_rasp_temp.sh -w 60 -c 70
EOF EOF
``` ```