You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.0 KiB
24 lines
1.0 KiB
# You can configure here the sensors
|
|
# Format is <sensors_name>=<command>!<high threshold>!<low threshold>
|
|
# An alert is triggerd if the temperature is above the high threshold
|
|
# The alert is cleared if the temperature is less than low threshold
|
|
# Example:
|
|
#
|
|
#
|
|
## Examples with ipmitool
|
|
# cpu0 = /usr/bin/ipmitool sdr get 'P1 Therm Margin' | grep 'Sensor Reading' | cut -d':' -f 2 | awk '{print$1}'!-30!-39
|
|
# mb = /usr/bin/ipmitool sdr get 'Baseboard Temp' | grep 'Sensor Reading' | cut -d':' -f 2 | awk '{print$1}'!50!45
|
|
#
|
|
## 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
|
|
|