blob: b3525fc0883f8df34d98d71a0040217cc2eb49da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
#
# PNP4Nagios template for check_hp_bladechassis
# http://folk.uio.no/trondham/software/check_hp_bladechassis.html
#
# $Id: check_hp_bladechassis.php 15736 2009-11-06 14:10:38Z trondham $
#
# Color for power usage in watts
$PWRcolor = "66FF00";
# Counters
$count = 0; # general counter
# Title
$def_title = 'HP Blade Enclosure';
# Loop through the performance data
foreach ($DS as $i) {
# Total Wattage
if(preg_match('/^total_watt/',$NAME[$i]) && $UNIT[$i] == 'W') {
$NAME[$i] = 'Total Power Usage';
++$count;
$ds_name[$count] = "Total Power Consumption";
$vlabel = "Watt";
$title = $ds_name[$count];
$opt[$count] = "--slope-mode --vertical-label \"$vlabel\" --title \"$def_title: $title\" ";
$def[$count] = "DEF:var$i=$rrdfile:$DS[$i]:AVERAGE " ;
$def[$count] .= "AREA:var$i#$PWRcolor:\"$NAME[$i]\" " ;
$def[$count] .= "LINE:var$i#000000: " ;
$def[$count] .= "GPRINT:var$i:LAST:\"%6.0lf $UNIT[$i] last \" ";
$def[$count] .= "GPRINT:var$i:MAX:\"%6.0lf $UNIT[$i] max \" ";
$def[$count] .= "GPRINT:var$i:AVERAGE:\"%6.2lf $UNIT[$i] avg \\n\" ";
}
}
?>
|