munin: Fix fan speed limits of hpasmcli2 plugin.
authorMatthijs Kooijman <matthijs@stdin.nl>
Wed, 5 May 2010 11:57:09 +0000 (13:57 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Wed, 5 May 2010 11:57:09 +0000 (13:57 +0200)
The plugin now warns when the speed is < 75% and becomes critical when
speed is < 50%. Previously, it would warn when the speed was > 75%,
which was reversed (taken from the temperature values...).

etc/munin/plugins/hpasmcli2_fans

index 80e5d97cb8fefe54066bc518860106652ba77856..8ac45b019f9a4964de129548ab9f28b40ef3c984 100755 (executable)
@@ -151,8 +151,8 @@ if (defined($show_target) and $show_target eq 'temp') {
         print "graph_info This graph shows the info of fans as reported by hpasmcli.\n";
         foreach my $key (sort keys %output) {
             print "fan$key.label FAN$key $output{$key}->{'location'}\n";
-            print "fan$key.warning " . ($output{$key}->{'threshold'} * 0.75) . "\n";
-            print "fan$key.critical $output{$key}->{'threshold'}\n";
+            print "fan$key.warning " . ($output{$key}->{'threshold'} * 0.75) .  ":\n";
+            print "fan$key.critical " . ($output{$key}->{'threshold'} * 0.5) .  ":\n";
         }
     } else {
         foreach my $key (sort keys %output) {