May 15May 15 On my dashboard the Processor display shows power as 0 watts and temperature -1°C for my AMD FX 8350 CPU. Obviously not correct. Any suggestions or should I wait for 7.3.1?
May 15May 15 Community Expert Some olders CPUs may not be correctly supported by the stock Linux drivers, or the board is not passing through the correct info.
May 16May 16 Community Expert 2 hours ago, emexso said:The temperature is displayed correctly at the bottom of the GUI.Can you run sensors in a terminal and post results
May 16May 16 Community Expert On 5/15/2026 at 3:49 AM, Woodpusherghd said:On my dashboard the Processor display shows power as 0 watts and temperature -1°C for my AMD FX 8350 CPU. Obviously not correct. Any suggestions or should I wait for 7.3.1?Can you provide output sensors when you run in a terminal
May 16May 16 Author 7 hours ago, SimonF said:Can you provide output sensors when you run in a terminalResults of Sensors is attached. sensors.txt
May 17May 17 20 hours ago, SimonF said:Can you run sensors in a terminal and post results sensors.txt
May 19May 19 Community Expert Hi @emexso @Woodpusherghd Could you open a terminalnano temppowerCopy this code block into the file, run using bash temppower and unload the directory and files created.OUT="/tmp/cpu-test-$(date +%Y%m%d-%H%M%S)"; mkdir -p "$OUT"; \ { echo "=== sensors ==="; sensors 2>&1; } > "$OUT/sensors.txt"; \ { echo "=== sensors -j ==="; sensors -j 2>&1; } > "$OUT/sensors.json.txt"; \ { echo "=== hwmon names + temp labels/inputs ==="; \ for d in /sys/class/hwmon/hwmon*; do [ -d "$d" ] || continue; \ echo; echo "[$d]"; [ -r "$d/name" ] && echo "name=$(cat "$d/name")"; \ for f in "$d"/temp*_label "$d"/temp*_input; do [ -r "$f" ] && echo "$(basename "$f")=$(cat "$f")"; done; \ done; } > "$OUT/hwmon.txt" 2>&1; \ { echo "=== powercap ==="; ls -la /sys/class/powercap 2>&1; \ find /sys/class/powercap -maxdepth 3 -type f \( -name name -o -name energy_uj -o -name max_energy_range_uj \) -print 2>/dev/null | \ while IFS= read -r f; do echo; echo "-- $f"; cat "$f" 2>/dev/null || true; done; } > "$OUT/powercap.txt" 2>&1; \ { echo "=== modules ==="; lsmod | grep -Ei 'k10temp|fam15h_power|zenpower|rapl|coretemp' || true; } > "$OUT/modules.txt"; \ echo "Saved to: $OUT"; ls -1 "$OUT"
May 19May 19 7 minutes ago, SimonF said:Hi @emexso @WoodpusherghdCould you open a terminalnano temppowerCopy this code block into the file, run using bash temppower and unload the directory and files created.OUT="/tmp/cpu-test-$(date +%Y%m%d-%H%M%S)"; mkdir -p "$OUT"; \ { echo "=== sensors ==="; sensors 2>&1; } > "$OUT/sensors.txt"; \ { echo "=== sensors -j ==="; sensors -j 2>&1; } > "$OUT/sensors.json.txt"; \ { echo "=== hwmon names + temp labels/inputs ==="; \ for d in /sys/class/hwmon/hwmon*; do [ -d "$d" ] || continue; \ echo; echo "[$d]"; [ -r "$d/name" ] && echo "name=$(cat "$d/name")"; \ for f in "$d"/temp*_label "$d"/temp*_input; do [ -r "$f" ] && echo "$(basename "$f")=$(cat "$f")"; done; \ done; } > "$OUT/hwmon.txt" 2>&1; \ { echo "=== powercap ==="; ls -la /sys/class/powercap 2>&1; \ find /sys/class/powercap -maxdepth 3 -type f \( -name name -o -name energy_uj -o -name max_energy_range_uj \) -print 2>/dev/null | \ while IFS= read -r f; do echo; echo "-- $f"; cat "$f" 2>/dev/null || true; done; } > "$OUT/powercap.txt" 2>&1; \ { echo "=== modules ==="; lsmod | grep -Ei 'k10temp|fam15h_power|zenpower|rapl|coretemp' || true; } > "$OUT/modules.txt"; \ echo "Saved to: $OUT"; ls -1 "$OUT" cpu-test-20260519-104833.rar
May 20May 20 Community Expert Solution @Woodpusherghd @emexso I have made some updates to the API which the dashboard uses. This a plugin that will install the changes, once you have tested you can remove or keep it in place until a release ships with the API changes.https://preview.dl.unraid.net/unraid-api/tag/PR2011/dynamix.unraid.net.plg
May 20May 20 Author 4 minutes ago, SimonF said:@Woodpusherghd @emexsoI have made some updates to the API which the dashboard uses. This a plugin that will install the changes, once you have tested you can remove or keep it in place until a release ships with the API changes.https://preview.dl.unraid.net/unraid-api/tag/PR2011/dynamix.unraid.net.plgMany thanks! Wattage and temp displays now.
May 20May 20 Community Expert 39 minutes ago, Woodpusherghd said:Many thanks! Wattage and temp displays now.Could you provide a screen print please.
May 21May 21 13 hours ago, SimonF said:@Woodpusherghd @emexsoI have made some updates to the API which the dashboard uses. This a plugin that will install the changes, once you have tested you can remove or keep it in place until a release ships with the API changes.https://preview.dl.unraid.net/unraid-api/tag/PR2011/dynamix.unraid.net.plgThank you!
May 21May 21 Community Expert I have updated the plugin with a few code updates, please can you update and confirm it is still working correctly for you systems.
May 21May 21 3 hours ago, SimonF said:I have updated the plugin with a few code updates, please can you update and confirm it is still working correctly for you systems.I have installed the Unraid Connect update (2026.05.21.0800) and everything is still working.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.