mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
1c379dcd05
* massive inlines * fix style and wtf * remove rrdtool.inc.php include * fix CommonFunctions namespace issues * looking for missing class space, fix undefined class issues * style fixes
14 lines
346 B
PHP
14 lines
346 B
PHP
<?php
|
|
|
|
if (Rrd::checkRrdExists(Rrd::name($device['hostname'], 'netstats-ip'))) {
|
|
$graph_title = 'IP Statistics';
|
|
$graph_type = 'device_ip';
|
|
|
|
include 'includes/html/print-device-graph.php';
|
|
|
|
$graph_title = 'IP Fragmented Statistics';
|
|
$graph_type = 'device_ip_fragmented';
|
|
|
|
include 'includes/html/print-device-graph.php';
|
|
}
|