can someone help me with the correct parameters to monitor the temperature of MB and CPU with zabbix agent with LM-Sensors?
These parameters found them in another post.
UserParameter = sensor.temp1, sensors | grep "M / B" | cut-c15-16
UserParameter = sensor.temp2, sensors | grep CPU | cut-c15-16
And these others:
UserParameter = sensor.temp1, sensors | grep 'temp1' | awk '{print $ 2 +0}'
UserParameter = sensor.temp2, sensors | grep 'temp2' | awk '{print $ 2 +0}'
UserParameter = sensor.temp3, sensors | grep "temp3" | awk '{print $ 2 +0}'
Which are correct?
These parameters found them in another post.
UserParameter = sensor.temp1, sensors | grep "M / B" | cut-c15-16
UserParameter = sensor.temp2, sensors | grep CPU | cut-c15-16
And these others:
UserParameter = sensor.temp1, sensors | grep 'temp1' | awk '{print $ 2 +0}'
UserParameter = sensor.temp2, sensors | grep 'temp2' | awk '{print $ 2 +0}'
UserParameter = sensor.temp3, sensors | grep "temp3" | awk '{print $ 2 +0}'
Which are correct?
Comment