git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/nagios-plugins-contrib-24.20190301~bpo9+1/check_hp_bladechassis/check_hp_bladechassis-1.0.1/check_hp_bladechassis.php
diff options
context:
space:
mode:
Diffstat (limited to 'nagios-plugins-contrib-24.20190301~bpo9+1/check_hp_bladechassis/check_hp_bladechassis-1.0.1/check_hp_bladechassis.php')
-rw-r--r--nagios-plugins-contrib-24.20190301~bpo9+1/check_hp_bladechassis/check_hp_bladechassis-1.0.1/check_hp_bladechassis.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/nagios-plugins-contrib-24.20190301~bpo9+1/check_hp_bladechassis/check_hp_bladechassis-1.0.1/check_hp_bladechassis.php b/nagios-plugins-contrib-24.20190301~bpo9+1/check_hp_bladechassis/check_hp_bladechassis-1.0.1/check_hp_bladechassis.php
new file mode 100644
index 0000000..b3525fc
--- /dev/null
+++ b/nagios-plugins-contrib-24.20190301~bpo9+1/check_hp_bladechassis/check_hp_bladechassis-1.0.1/check_hp_bladechassis.php
@@ -0,0 +1,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\" ";
+ }
+
+}
+?>