Merge pull request #9 from mashbrno/main

Reading CPU temperature using sensors package
This commit is contained in:
Basti
2024-09-23 20:23:37 +02:00
committed by GitHub
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Configuration on Proxmox # Configuration on Proxmox
### Install snmpd ### Install snmpd and sensors package for obtaining CPU temperature
`apt install snmpd` `apt install snmpd sensors`
### Configure snmpd ### Configure snmpd
#### Paste content from snmpd.conf to /etc/snmp/snmpd.conf #### Paste content from snmpd.conf to /etc/snmp/snmpd.conf

View File

@ -3,6 +3,9 @@ if [ "$1" = "-g" ]
then then
echo .1.3.6.1.2.1.25.1.8 echo .1.3.6.1.2.1.25.1.8
echo gauge echo gauge
echo `cat /sys/class/thermal/thermal_zone2/temp | sed 's/\(.\)..$/.\1/'` # when sensors packages is installed, use this:
echo `sensors -u | grep temp1_input -m 1 | awk '{print $2}' | sed 's/[0-9][0-9]$//'`
# otherwise uncomment this and comment out the line above
#echo `cat /sys/class/thermal/thermal_zone2/temp | sed 's/\(.\)..$/.\1/'`
fi fi
exit 0 exit 0