munin: Raise the warning threshold vor hpasmcli2 temperatures to 80%.
authorMatthijs Kooijman <matthijs@stdin.nl>
Mon, 26 Jul 2010 11:18:14 +0000 (13:18 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Mon, 26 Jul 2010 11:18:14 +0000 (13:18 +0200)
Previously, this would be 75% of the threshold hpasmcli reports, but the
temperature of the primary CPU is regularly just above 75%.

etc/munin/plugins/hpasmcli2_fans

index 8ac45b019f9a4964de129548ab9f28b40ef3c984..75e6c0d1d460662d29e1d40e7a021295b343cb23 100755 (executable)
@@ -116,7 +116,7 @@ if (defined($show_target) and $show_target eq 'temp') {
         print "graph_info This graph shows the temperatures as reported by hpasmcli.\n";
         foreach my $key (sort keys %output) {
             print "temp$key.label $output{$key}->{'location'}\n";
-            print "temp$key.warning " . ($output{$key}->{'threshold'} * 0.75) . "\n";
+            print "temp$key.warning " . ($output{$key}->{'threshold'} * 0.80) . "\n";
             print "temp$key.critical $output{$key}->{'threshold'}\n";
         }
     } else {