Fork me on GitHub
Monitorix logo
Celebrating 15 years :: 2005-2020
Welcome to the Monitorix project
Take control over your small server

News

15-May-2013
The previous version introduced a bug that prevents seeing the Core temperatures. Fortunately the zoomed graph is not affected by this bug, so you can still see the Core temperatures if you click on the main graph.

That bug will be fixed in the next version, meanwhile though you can work around that problem just applying the following simple patch to the /usr/lib/monitorix/lmsens.pm program:

--- lmsens.pm	2013-05-13 11:06:22.000000000 +0200
+++ new/lmsens.pm	2013-05-15 18:25:42.430851337 +0200
@@ -528,7 +528,7 @@
 	}
 	for($n = 0; $n < 4; $n++) {
 		for($n2 = $n; $n2 < 16; $n2 += 4) {
-			$str = "core_" . $n2;
+			$str = "core" . $n2;
 			if($lmsens->{list}->{$str}) {
 				$str = sprintf("Core %2d", $n2);
 				push(@tmp, "LINE2:core_$n2" . $LC[$n2] . ":$str\\g");
      
Many thanks to Bryan Guidroz for pointing this out.
Sorry for the inconveniences.


First   Previous   Next   Last