From db4ecf18a46fe8cf9a1f532cde77c22ab2152d57 Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Mon, 8 Feb 2010 23:15:36 +0100 Subject: [PATCH 1/1] more temperature sensors --- temperature.conf | 72 ++++++++++++++++++++++++++++++++++++++++++++-- two-apc-units.conf | 2 +- 2 files changed, 70 insertions(+), 4 deletions(-) diff --git a/temperature.conf b/temperature.conf index 168a779..6aac5cb 100644 --- a/temperature.conf +++ b/temperature.conf @@ -8,9 +8,9 @@ $hosts = [ 'address' => "10.50.252.253", 'name' => "usv1", 'community' => "public", - 'rrdfile' => "/var/www/temperature/.work/temp.rrd", + 'rrdfile' => "/var/spool/upsgraph/temp.usv1.rrd", - 'fields' => [ 'battT' ], + 'fields' => [ 'battT', 'ambT', 'ambH' ], 'vars' => { 'battT' => { @@ -20,8 +20,74 @@ $hosts = [ 'min' => '0', 'max' => '100', }, + 'ambT' => { + 'name' => 'Ambient Temperature', + 'oidtext' => 'PowerNet-MIB::iemStatusProbeCurrentTemp.1', + 'oid' => '1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1', + 'min' => '0', + 'max' => '60', + }, + 'ambH' => { + 'name' => 'Ambient Humidity', + 'oidtext' => 'PowerNet-MIB::iemStatusProbeCurrentHumid.1', + 'oid' => '1.3.6.1.4.1.318.1.1.10.2.3.2.1.6.1', + 'min' => '0', + 'max' => '100', + }, }, - } + }, + { + 'address' => "10.50.252.254", + 'name' => "usv2", + 'rrdfile' => "/var/spool/upsgraph/temp.usv2.rrd", + 'community' => "public", + + 'fields' => [ 'battT' ], + + 'vars' => { + 'battT' => { + 'name' => 'Battery Temperature', + 'oidtext' => 'PowerNet-MIB::upsAdvBatteryTemperature.0', + 'oid' => '1.3.6.1.4.1.318.1.1.1.2.2.2.0', + 'min' => '0', + 'max' => '100', + }, + } + }, + { + 'address' => "192.168.50.245", + 'name' => "prak", + 'rrdfile' => "/var/spool/upsgraph/temp.prak.rrd", + 'community' => "public", + + 'fields' => [ 'temp' ], + + 'vars' => { + 'temp' => { + 'name' => 'Internal Temperature', + 'oid' => '1.3.6.1.4.1.9.9.13.1.3.1.3', + 'min' => '0', + 'max' => '200', + }, + } + }, + { + 'address' => "192.168.50.244", + 'name' => "colin", + 'rrdfile' => "/var/spool/upsgraph/temp.colin.rrd", + 'community' => "public", + + 'fields' => [ 'temp' ], + + 'vars' => { + 'temp' => { + 'name' => 'Internal Temperature', + 'oid' => '1.3.6.1.4.1.9.9.13.1.3.1.3', + 'min' => '0', + 'max' => '200', + }, + } + }, ]; 1; diff --git a/two-apc-units.conf b/two-apc-units.conf index 50b0132..274b64b 100644 --- a/two-apc-units.conf +++ b/two-apc-units.conf @@ -1,6 +1,6 @@ package UPSGRAPH; -$outdir="/var/www/usv/1/"; +$outdir="/var/www/usv/"; $step=60; $hosts = -- 2.39.2