Monitorix
Monitorix copied to clipboard
FreeBSD temperature sensors/ctl values, are not recognized
FreeBSD has sysctl OIDs whaich are not recognized by monitorix:
dev.cpu.X.temperature : Current temperature
hw.acpi.thermal.tzX.temperature : current thermal zone temperature
it'd be great to draw those data
I don't really know BSD systems but now that lmsens can call anything to get the sensors readouts, you could perhaps make your own script to get and display those values a format compatible with sensors (lmsensors). Also don't forget to drop this section from lmsens.pm:
if(grep {$_ eq $config->{os}} ("FreeBSD", "OpenBSD", "NetBSD")) {
logger("$myself is not supported yet by your operating system ($config->{os}).");
return;
}
related: #290