Files

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

19 lines
429 B
PHP
Raw Permalink Normal View History

<?php
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2011-10-01 10:10:02 +00:00
$scale_min = 0;
$ds = 'latency';
$colour_area = 'F6F6F6';
$colour_line = 'B3D0DB';
$colour_area_max = 'FFEE99';
2011-10-01 10:10:02 +00:00
$graph_max = 100;
$unit_text = 'Latency';
$powerdns_rrd = Rrd::name($device['hostname'], ['app', 'powerdns', $app->app_id]);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($powerdns_rrd)) {
$rrd_filename = $powerdns_rrd;
2011-10-01 10:10:02 +00:00
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';