Home Directory Plugins Hardware Others check_rpi_temp.py - Raspberry Pi temperature

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

check_rpi_temp.py - Raspberry Pi temperature

Rating
0 votes
Favoured:
0
Current Version
0.2
Last Release Date
2019-09-30
Compatible With
  • Nagios 1.x
  • Nagios 2.x
  • Nagios 3.x
  • Nagios 4.x
Owner
Twitter Handle
ClaudioKuenzler
License
GPL
Hits
5522
Files:
FileDescription
901-raspberry-pi-temperature-graph.png901-raspberry-pi-temperature-graph.png
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
check_rpi_temp.py - Raspberry Pi temperature
Measure the Raspberry Pi board temperature and check against thresholds. Supports Celsius and Fahrenheit.
check_rpi_temp is a monitoring plugin written in Python (compatible with Python2 and Python3) and measures the board temperature of a Raspberry Pi computer. It allows to check thresholds against Celsius and Fahrenheit values. Easy and automatic graphing thanks to the performance data.

The usage is straight forward:

pi@raspberrypi:~ $ /usr/lib/nagios/plugins/check_rpi_temp.py -w 50 -c 60
RPI TEMP OK: Temperature 40.80 degrees c |rpi_temp=40.80;50.00;60.00;;

Or if you prefer Fahrenheit:

pi@raspberrypi:~ $ /usr/lib/nagios/plugins/check_rpi_temp.py -w 90 -c 105 -u f
RPI TEMP CRITICAL: Temperature 105.44 is higher than critical threshold (105.00) |rpi_temp=105.44;90.00;105.00;;

Important note: You need to make sure the user running the command is able to execute vcgencmd. For example if you use the 'nagios' user (default in an NRPE setup), the command fails:

nagios@raspberrypi:~$ /usr/bin/vcgencmd measure_temp
VCHI initialization failed

By default the "pi" and the "root" user are able to run this command. So either define a sudoers rule or create a new user with the same privileges as the pi user.