Temperature Readings
Temperature readings are available for the connected node only and not for all nodes in a cluster. This is because the data is retrieved via SSH.
What data is available?
The data available depends on your hardwared temperature sensors and the availability via hwmon.
How is the data retrieved?
The data is retrieved via SSH using the user and password that you have provided when you added the server to the app. A small script is used to retrieve the temperature data from the node:
# >>> ProxMate: This command was executed to get system temperatures from hwmon devices
for device in /sys/class/hwmon/hwmon*; do
echo -e "\n# \$(cat \$device/name):"
temp_found=false
for temp in \$device/temp*_input; do
if [ -f \$temp ]; then
sensor=\$(basename \$temp | cut -d'_' -f1)
temp_file="\$device/\${sensor}_label"
if [ -f \$temp_file ]; then
echo "-- \$(cat \$temp_file): \$(awk '{printf "%.2f", \$1/1000}' \$temp)"
temp_found=true
fi
fi
done
if [ "\$temp_found" = false ]; then
echo "-- no temp found"
fi
done