Siklu RADIO-BRIGE-MIB provided by user

Added polling files

Added system volts and temp
This commit is contained in:
laf
2015-04-21 11:37:47 +01:00
parent 888cadb0e8
commit bf24e793b5
9 changed files with 3490 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
include("includes/graphs/common.inc.php");
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/siklu-mib.rrd";
if (file_exists($rrdfilename)) {
$rrd_options .= " COMMENT:'db Now Min Max\\n'";
$rrd_options .= " DEF:rfAverageCinr=".$rrdfilename.":rfAverageCinr:AVERAGE ";
$rrd_options .= " LINE1:rfAverageCinr#CC0000:'CINR ' ";
$rrd_options .= " GPRINT:rfAverageCinr:LAST:%3.2lf ";
$rrd_options .= " GPRINT:rfAverageCinr:MIN:%3.2lf ";
$rrd_options .= " GPRINT:rfAverageCinr:MAX:%3.2lf\\\l ";
}

View File

@@ -0,0 +1,15 @@
<?php
include("includes/graphs/common.inc.php");
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/siklu-mib.rrd";
if (file_exists($rrdfilename)) {
$rrd_options .= " COMMENT:'dbm Now Min Max\\n'";
$rrd_options .= " DEF:rfAverageRssi=".$rrdfilename.":rfAverageRssi:AVERAGE ";
$rrd_options .= " LINE1:rfAverageRssi#CC0000:'RSSI ' ";
$rrd_options .= " GPRINT:rfAverageRssi:LAST:%3.2lf ";
$rrd_options .= " GPRINT:rfAverageRssi:MIN:%3.2lf ";
$rrd_options .= " GPRINT:rfAverageRssi:MAX:%3.2lf\\\l ";
}

View File

@@ -0,0 +1,15 @@
<?php
include("includes/graphs/common.inc.php");
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/siklu-mib.rrd";
if (file_exists($rrdfilename)) {
$rrd_options .= " COMMENT:' Now Min Max\\n'";
$rrd_options .= " DEF:rfModulationType=".$rrdfilename.":rfModulationType:AVERAGE ";
$rrd_options .= " LINE1:rfModulationType#CC0000:'Modulation ' ";
$rrd_options .= " GPRINT:rfModulationType:LAST:%3.2lf ";
$rrd_options .= " GPRINT:rfModulationType:MIN:%3.2lf ";
$rrd_options .= " GPRINT:rfModulationType:MAX:%3.2lf\\\l ";
}