Files

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

25 lines
447 B
PHP
Raw Permalink Normal View History

<?php
$scale_min = 1000;
require 'includes/html/graphs/common.inc.php';
$opensips_rrd = Rrd::name($device['hostname'], ['app', 'opensips', $app->app_id]);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($opensips_rrd)) {
$rrd_filename = $opensips_rrd;
}
$ds = 'openfiles';
$colour_area = 'F0E68C';
$colour_line = 'FF4500';
$colour_area_max = 'FFEE99';
$graph_max = 1000000;
$unit_text = 'Open files';
require 'includes/html/graphs/generic_simplex.inc.php';