Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
532 B
PHP
Raw Permalink Normal View History

<?php
2020-09-21 15:40:17 +02:00
$nototal = 1;
$ds_in = 'packets_recv';
$ds_out = 'packets_sent';
$graph_title .= '::packets';
$unit_text = 'Packets';
$colour_line_in = '330033';
$colour_line_out = 'FF6600';
$colour_area_in = 'AA66AA';
$colour_area_out = 'FFDD88';
$colour_area_in_max = 'CC88CC';
$colour_area_out_max = 'FFEFAA';
$ntpdserver_rrd = Rrd::name($device['hostname'], ['app', 'ntp-server', $app->app_id]);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($ntpdserver_rrd)) {
$rrd_filename = $ntpdserver_rrd;
2011-10-01 10:10:02 +00:00
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_duplex.inc.php';