Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Processor wattage and temperature incorrect on 7.3.0

Featured Replies

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?

Solved by SimonF

I have the same problem with an Intel Core2 Quad Q9505 CPU.

  • 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.

The temperature is displayed correctly at the bottom of the GUI.

  • Community Expert

That will be a plugin.

  • 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

  • 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

  • Author
7 hours ago, SimonF said:

Can you provide output sensors when you run in a terminal

Results of Sensors is attached.

sensors.txt

20 hours ago, SimonF said:

Can you run sensors in a terminal and post results

sensors.txt

  • Community Expert

Hi @emexso @Woodpusherghd

Could you open a terminal

nano temppower

Copy 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"
7 minutes ago, SimonF said:

Hi @emexso @Woodpusherghd

Could you open a terminal

nano temppower

Copy 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

  • 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
  • Author
4 minutes ago, SimonF said:

@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

Many thanks! Wattage and temp displays now.

  • Community Expert
39 minutes ago, Woodpusherghd said:

Many thanks! Wattage and temp displays now.

Could you provide a screen print please.

  • Author
25 minutes ago, SimonF said:

Could you provide a screen print please.

Screenshot 2026-05-20 134133.png

13 hours ago, SimonF said:

@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

Thank you!

Captura de pantalla 2026-05-21 065759.png

  • 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.

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.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.