This commit is contained in:
2022-09-03 11:47:30 -05:00
parent ef7a4ab177
commit e9af0dd266
2 changed files with 7 additions and 7 deletions

View File

@@ -2,11 +2,8 @@
mqtt_conn='mosquitto_sub -h 127.0.0.1 -u mqtt -P 12mqtt34password56'
declare -A TEMP_WARN_THRESHOLDS
TEMP_WARN_THRESHOLDS['ServerRoomTH']=78
declare -A TEMP_CRIT_THRESHOLDS
TEMP_CRIT_THRESHOLDS['ServerRoomTH']=85
declare -A TEMP_THRESHOLDS
TEMP_THRESHOLDS['ServerRoomTH']="78,85"
declare -A SENSOR_MQTTID

View File

@@ -22,9 +22,12 @@ CHECKTEMP(){
temp_f=`echo "scale=2; $temp_c*1.8 + 32" | bc`
#echo "$temp_c -> $temp_f"
if [ $temp_f -ge ${TEMP_WARN_THRESHOLDS[${1}]} ] && [ $temp_f -lt ${TEMP_CRIT_THRESHOLDS[${1}]} ]; then
echo ${TEMP_THRESHOLDS[${1}]} | cut -d',' -f 1 | read temp_warn
echo ${TEMP_THRESHOLDS[${1}]} | cut -d',' -f 2 | read temp_crit
if [ $temp_f -ge ${temp_warn} ] && [ $temp_f -lt ${temp_crit} ]; then
echo "WARNING: $temp_f"
elif [ $temp_f -ge ${TEMP_CRIT_THRESHOLDS[${1}]} ]; then
elif [ $temp_f -ge ${temp_crit} ]; then
echo "CRITICAL: $temp_f"
else
echo "normal: $temp_f"