Files
librenms-librenms/includes/html/pages/device/graphs/ipSystemStats.inc.php
Sean 6f7d0b2027 Fix typo in filename (#12996)
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/
2021-07-01 16:21:56 +02:00

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';
}