mirror of
https://github.com/henrygd/beszel.git
synced 2026-08-17 12:46:22 +00:00
Adds fan RPM monitoring as a peer to the existing temperature collection, addressing #1918. --------- Co-authored-by: henrygd <hank@henrygd.me>
8 lines
208 B
Go
8 lines
208 B
Go
//go:build !linux
|
|
|
|
package agent
|
|
|
|
// hwmonRoot is empty on non-Linux platforms — fan RPM reporting via sysfs
|
|
// hwmon is Linux-specific. updateFans() short-circuits when this is empty.
|
|
const hwmonRoot = ""
|