Compare commits

...

14 Commits

Author SHA1 Message Date
2a500f3339 Bumped the version to 1.2 after Onkobu's updates 2021-01-11 01:30:47 +01:00
56edc7a786 Updated the list of very kind people 2021-01-11 01:13:26 +01:00
3c0407dc11
Merge pull request #7 from onkobu/master
Argument order irrelevant/ sensor parsing improved/ fixed multi-sensor and added new-style/old-style parsing
2021-01-11 01:08:36 +01:00
onkobu
1853626e49 Fix multi-sensor with identical thresholds
- keep thresholds once found, wait for regular re-definition
2021-01-07 22:10:25 +01:00
onkobu
9a3f4cc3a9 Overlay new filtering and fix multi-sensor call
- introduced -n to use sed-based filtering
- multi-sensor call yields output for all sensors instead of only last
2020-12-27 10:30:32 +01:00
onkobu
b504956f4f Argument order irrelevant/ sensor parsing improved
- -s/ --sensor first does not ignore following -c/ -w anymore
- current sensor's multiline output without adapter and temperatur in 2nd line
2020-12-12 13:41:10 +01:00
c60b88813a
Merge pull request #6 from lucaswall/patch-1
Correctly handle -s argument with spaces.
2020-04-17 19:46:40 +02:00
Lucas Wall
b6241fd46d
Correctly handle -s argument with spaces. 2020-04-17 14:27:49 -03:00
b618a2cc8d Bumped version and updated HISTORY & THANKS 2019-05-30 21:05:21 +02:00
d166498290
Merge pull request #4 from kikniknik/master
Support for multiple sensors and general Improvements
2019-05-30 20:20:48 +02:00
kikniknik
bb88a0a5af Add support for multiple sensors 2019-05-28 19:48:14 +03:00
kikniknik
1912395135 Enrich performance data output 2019-05-28 02:24:23 +03:00
kikniknik
8e88c82517 Change the way that temperature is retrieved
Fixes issue with temperatures < 10.
2019-05-28 02:09:07 +03:00
2286e23d19 Changed the Performace Data Field 2017-06-29 05:24:15 +02:00
3 changed files with 150 additions and 87 deletions

21
HISTORY
View File

@ -23,3 +23,24 @@ Version 0.94:
In 0.94 I removed /etc from the whereis path as it didn't work for me
on my setup. It found the config-file for lm-sensors and tried to run
it.
Version 0.95:
Changed the Performance Data Field to only contain a label and the
actual value in celsius. For example, "temperature=39".
Version 1.0:
Several improvements made by Nikodimos, including:
- Added support for multiple sensors
- Enriched performance data output. For example, "CPU=34;40;55 MB=32;40;55"
- Changed (and improved) the way temperatures are retrieved
- Other fixes and touch-ups, such as the help text now shows long options
Version 1.1:
Improvements for Icinga 2, made by Onkobu
- order of arguments is irrelevant now, --sensor first ignored following -c & -w
- current sensors' multiline output needs sophisticated treatment
Version 1.2:
Improvements for Icinga 2, made by Onkobu
- Added the ability to switch between old and new style with an -n option
- Fixed multi-sensor with identical thresholds

3
THANKS
View File

@ -7,3 +7,6 @@ Here is a list of these kind people.
Chad Columbus ccolumbu@hotmail.com
Ryan Loudfoot elyrith@gmail.com
Nikodimos kikniknik on Github
Shakalandy shakalandy on Github
Onkobu Tanaake onkobu on Github

View File

@ -33,8 +33,8 @@
# #
###############################################################################
VERSION="Version 0.94"
AUTHOR="(c) 2011 Jack-Benny Persson (jack-benny@cyberinfo.se)"
VERSION="Version 1.2"
AUTHOR="(c) 2011 Jack-Benny Persson (jack-benny@cyberinfo.se), (c) 2020 Onkobu Tanaake (oss@onkobutanaake.de)"
# Sensor program
SENSORPROG=$(whereis -b -B /{bin,sbin,usr} /{bin,sbin,usr}/* -f sensors | awk '{print $2}')
@ -71,20 +71,30 @@ print_help()
/bin/cat <<EOT
Options:
-h
-h, --help
Print detailed help screen
-V
-V, --version
Print version information
-v
-v, --verbose
Verbose output
--sensor WORD
-s, --sensor <WORD[,DISPLAY_NAME]>
Set what to monitor, for example CPU or MB (or M/B). Check sensors for the
correct word. Default is CPU.
-w INTEGER
correct word. Default is CPU. A different display name can be used in output,
by adding it next to sensor with a comma.
It can be used more than once, with different warning/critical thresholds optionally.
-w, --warning <INTEGER>
Exit with WARNING status if above INTEGER degrees
-c INTEGER
-c, --critical <INTEGER>
Exit with CRITICAL status if above INTEGER degrees
Warning and critical thresholds must be provided before the corresponding --sensor option.
-n
Use the new sed based filter in case classic filter yields no temperature.
Examples:
./check_temp.sh [-n] -w 65 -c 75 --sensor CPU
./check_temp.sh [-n] -w 65 -c 75 --sensor CPU --sensor temp1
./check_temp.sh [-n] -w 65 -c 75 --sensor CPU -w 75 -c 85 --sensor temp1,GPU
EOT
}
@ -96,7 +106,10 @@ thresh_warn=
# Critical threshold
thresh_crit=
# Hardware to monitor
sensor=CPU
default_sensor="CPU"
sensor_declared=false
STATE=$STATE_OK
# See if we have sensors program installed and can execute it
if [[ ! -x "$SENSORPROG" ]]; then
@ -104,6 +117,81 @@ if [[ ! -x "$SENSORPROG" ]]; then
exit $STATE_UNKNOWN
fi
function set_state {
[[ "$STATE" -lt "$1" ]] && STATE=$1
}
function process_sensor {
sensor=$(echo $1 | cut -d, -f1)
sensor_display=$(echo $1 | cut -d, -f2)
# Check if a sensor were specified
if [[ -z "$sensor" ]]; then
# No sensor to monitor were specified
echo "No sensor specified"
print_help
exit $STATE_UNKNOWN
fi
# Check if the thresholds have been set correctly
if [[ -z "$thresh_warn" || -z "$thresh_crit" ]]; then
# One or both thresholds were not specified
echo "Threshold not set"
print_help
exit $STATE_UNKNOWN
elif [[ "$thresh_crit" -lt "$thresh_warn" ]]; then
# The warning threshold must be lower than the critical threshold
echo "Warning temperature should be lower than critical"
print_help
exit $STATE_UNKNOWN
fi
# Get the temperature
# Grep the first float with a plus sign and keep only the integer
if [ $CLASSIC_FILTER -eq 1 ]; then
WHOLE_TEMP=$(${SENSORPROG} | grep "$sensor" | head -n1 | grep -o "+[0-9]\+\(\.[0-9]\+\)\?[^ \t,()]*" | head -n1)
else
WHOLE_TEMP=$(${SENSORPROG} -A "$sensor" | sed -n '2 p' | grep -o "+[0-9]\+\(\.[0-9]\+\)\?[^ \t,()]*" | head -n1)
fi
TEMPF=$(echo "$WHOLE_TEMP" | grep -o "[0-9]\+\(\.[0-9]\+\)\?")
TEMP=$(echo "$TEMPF" | cut -d. -f1)
# Verbose output
if [[ "$verbosity" -ge 1 ]]; then
/bin/cat <<__EOT
Debugging information:
Warning threshold: $thresh_warn
Critical threshold: $thresh_crit
Verbosity level: $verbosity
Current $sensor temperature: $TEMP
__EOT
echo "Temperature lines directly from sensors:"
${SENSORPROG}
fi
# Get performance data for Nagios "Performance Data" field
PERFDATA="$PERFDATA $sensor_display=$TEMP;$thresh_warn;$thresh_crit"
# And finally check the temperature against our thresholds
if [[ "$TEMP" != +([0-9]) ]]; then
# Temperature not found for that sensor
OUTPUT_TEXT="$OUTPUT_TEXT, No data found for sensor ($sensor)"
set_state $STATE_UNKNOWN
elif [[ "$TEMP" -gt "$thresh_crit" ]]; then
# Temperature is above critical threshold
OUTPUT_TEXT="$OUTPUT_TEXT, $sensor_display has temperature: $WHOLE_TEMP"
set_state $STATE_CRITICAL
elif [[ "$TEMP" -gt "$thresh_warn" ]]; then
# Temperature is above warning threshold
OUTPUT_TEXT="$OUTPUT_TEXT, $sensor_display has temperature: $WHOLE_TEMP"
set_state $STATE_WARNING
else
# Temperature is ok
OUTPUT_TEXT="$OUTPUT_TEXT, $sensor_display has temperature: $WHOLE_TEMP"
set_state $STATE_OK
fi
}
CLASSIC_FILTER=1
# Parse command line options
while [[ -n "$1" ]]; do
case "$1" in
@ -161,96 +249,47 @@ while [[ -n "$1" ]]; do
shift 2
;;
-\?)
print_help
exit $STATE_OK
;;
--sensor)
-s | --sensor)
if [[ -z "$2" ]]; then
echo "Option $1 requires an argument"
print_help
exit $STATE_UNKNOWN
fi
sensor=$2
sensor_declared=true
sensors_to_check="$2"
shift 2
;;
-n | --new-filter)
CLASSIC_FILTER=0
shift 1
;;
*)
echo "Invalid option '$1'"
print_help
exit $STATE_UNKNOWN
;;
esac
# argument order is irrelevant, Icinga2 gives no guarantees
# as soon as there are enough output is generated
if [ ! -z "$thresh_warn" ] && [ ! -z "$thresh_crit" ] && [ ! -z "$sensors_to_check" -o $# -eq 0 ]; then
if [ "$sensor_declared" = false ]; then
process_sensor "$default_sensor"
else
process_sensor "$sensors_to_check"
fi
fi
done
# Check if a sensor were specified
if [[ -z "$sensor" ]]; then
# No sensor to monitor were specified
echo "No sensor specified"
print_help
exit $STATE_UNKNOWN
fi
case "$STATE" in
"$STATE_OK") STATE_TEXT="OK" ;;
"$STATE_WARNING") STATE_TEXT="WARNING" ;;
"$STATE_CRITICAL") STATE_TEXT="CRITICAL" ;;
"$STATE_UNKNOWN") STATE_TEXT="UNKNOWN" ;;
esac
#Get the temperature
TEMP=`${SENSORPROG} | grep "$sensor" | cut -d+ -f2 | cut -c1-2 | head -n1`
#Old way - Get the temperature
#TEMP=`${SENSORPROG} | grep "$sensor" | awk '{print $3}' | cut -c2-3 | head -n1`
# Check if the thresholds have been set correctly
if [[ -z "$thresh_warn" || -z "$thresh_crit" ]]; then
# One or both thresholds were not specified
echo "Threshold not set"
print_help
exit $STATE_UNKNOWN
elif [[ "$thresh_crit" -lt "$thresh_warn" ]]; then
# The warning threshold must be lower than the critical threshold
echo "Warning temperature should be lower than critical"
print_help
exit $STATE_UNKNOWN
fi
# Verbose output
if [[ "$verbosity" -ge 1 ]]; then
/bin/cat <<__EOT
Debugging information:
Warning threshold: $thresh_warn
Critical threshold: $thresh_crit
Verbosity level: $verbosity
Current $sensor temperature: $TEMP
__EOT
echo "Temperature lines directly from sensors:"
${SENSORPROG}
fi
# Get performance data for Nagios "Performance Data" field
PERFDATA=`${SENSORPROG} | grep "$sensor" | head -n1`
# And finally check the temperature against our thresholds
if [[ "$TEMP" != +([0-9]) ]]; then
# Temperature not found for that sensor
echo "No data found for that sensor ($sensor) | $PERFDATA"
exit $STATE_UNKNOWN
elif [[ "$TEMP" -gt "$thresh_crit" ]]; then
# Temperature is above critical threshold
echo "$sensor CRITICAL - Temperature is $TEMP | $PERFDATA"
exit $STATE_CRITICAL
elif [[ "$TEMP" -gt "$thresh_warn" ]]; then
# Temperature is above warning threshold
echo "$sensor WARNING - Temperature is $TEMP | $PERFDATA"
exit $STATE_WARNING
else
# Temperature is ok
echo "$sensor OK - Temperature is $TEMP | $PERFDATA"
exit $STATE_OK
fi
exit $STATE_UNKNOWN
OUTPUT_TEXT=$(echo $OUTPUT_TEXT | sed -e 's/, //')
echo "TEMPERATURE $STATE_TEXT - $OUTPUT_TEXT |$PERFDATA"
exit $STATE