mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
12 lines
285 B
PHP
12 lines
285 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$ds = 'packets';
|
||
|
|
$unit_text = 'Pkts/Sec';
|
||
|
|
$filename = Rrd::name($device['hostname'], ['app', 'linux_softnet_stat', $app->app_id]);
|
||
|
|
|
||
|
|
if (! Rrd::checkRrdExists($filename)) {
|
||
|
|
d_echo('RRD "' . $filename . '" not found');
|
||
|
|
}
|
||
|
|
|
||
|
|
require 'includes/html/graphs/generic_stats.inc.php';
|