mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-25 16:08:14 +02:00
16 lines
589 B
PHP
16 lines
589 B
PHP
<?php
|
|
|
|
include("includes/graphs/common.inc.php");
|
|
|
|
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/siklu-wireless.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 ";
|
|
}
|
|
|