# You can configure here the sensors # Format is =!!! # An alert is triggerd if the temperature is above the high threshold # The alert is cleared if the temperature is less than low threshold # the last field (sensor type) is optional and defaults to temp # It's used if you want to monitor other sensors, like fan, or power # Example: # # ## Examples with ipmitool # cpu0 = /usr/bin/ipmitool sdr get 'P1 Therm Margin' | grep 'Sensor Reading' | awk '{print $4}'!-30!-39 # mb = /usr/bin/ipmitool sdr get 'Baseboard Temp' | grep 'Sensor Reading' | awk '{print $4}'!50!45 # # fan1 = fan1a=/usr/bin/ipmitool sdr get 'Fan1A RPM' | grep 'Sensor Reading' | awk '{print $4}'!0!0!fan # pwr1=/usr/bin/ipmitool sdr get 'Pwr Consumption' | grep 'Sensor Reading' | awk '{print $4}'!0!0!power # ## Examples with smartctl # sda = /usr/sbin/smartctl -a /dev/sda | grep Temperature_Celsius | awk '{print $10}'!45!40 # sdb = /usr/sbin/smartctl -a /dev/sdb | grep Temperature_Celsius | awk '{print $10}'!45!50 # ## Examples with lm_sensors # cpu0=/usr/bin/sensors | grep temp1 | cut -d':' -f 2 | awk '{print $1'} | sed -e "s/+//g" -e "s/.C//g"!65!55 # ## Examples with acpi # cpu0=cat /proc/acpi/thermal_zone/THRM/temperature | awk '{print $2}'!65!55 # # # !!! WARNING !!! # All the commands will be executed with root privileges