mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Was introduced 10 years ago by commit 63b25bb2f
.
This page seems not used in any code but accessible by the URL:
https://libre.nms/device/device=1/tab=graphs/group=ipSytemStats/
21 lines
625 B
PHP
21 lines
625 B
PHP
<?php
|
|
|
|
if (Rrd::checkRrdExists(Rrd::name($device['hostname'], 'ipSystemStats-ipv6'))) {
|
|
$graph_title = 'IPv6 IP Packet Statistics';
|
|
$graph_type = 'device_ipSystemStats_v6';
|
|
|
|
include 'includes/html/print-device-graph.php';
|
|
|
|
$graph_title = 'IPv6 IP Fragmentation Statistics';
|
|
$graph_type = 'device_ipSystemStats_v6_frag';
|
|
|
|
include 'includes/html/print-device-graph.php';
|
|
}
|
|
|
|
if (Rrd::checkRrdExists(Rrd::name($device['hostname'], 'ipSystemStats-ipv4'))) {
|
|
$graph_title = 'IPv4 IP Packet Statistics';
|
|
$graph_type = 'device_ipSystemStats_v4';
|
|
|
|
include 'includes/html/print-device-graph.php';
|
|
}
|