@cryptotaxi247 / infra / commits / bfe7b610

* Monitor the CPU temperature.

svn path=/configurations/trunk/tud/; revision=20177

Eelco Dolstra committed Feb 22, 2010 at 16:21 UTC bfe7b610f033dbdf864f6cb52f4abaf6f66e5865
1 file changed +4
common.nix
+4
@@ -21,4 +21,8 @@
21
22 services.zabbixAgent.enable = true;
23 services.zabbixAgent.server = "192.168.1.5,127.0.0.1";
24 + services.zabbixAgent.extraConfig =
25 + ''
26 + UserParameter=hardware.temp.cpu.average,cat /sys/devices/platform/coretemp.*/temp1_input | ${pkgs.perl}/bin/perl -e 'while (<>) { $n++; $sum += $_; }; print $sum / $n / 1000;'
27 + '';
28 }