From 6073c48ef3ea7292629643c73157d6e7000a1e4f Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Mon, 26 Jul 2010 13:18:14 +0200 Subject: [PATCH] munin: Raise the warning threshold vor hpasmcli2 temperatures to 80%. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/munin/plugins/hpasmcli2_fans b/etc/munin/plugins/hpasmcli2_fans index 8ac45b0..75e6c0d 100755 --- a/etc/munin/plugins/hpasmcli2_fans +++ b/etc/munin/plugins/hpasmcli2_fans @@ -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 { -- 2.30.2