Files

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

26 lines
442 B
PHP
Raw Permalink Normal View History

<?php
$scale_min = 0;
$scale_max = 1;
require 'includes/html/graphs/common.inc.php';
$icecast_rrd = Rrd::name($device['hostname'], ['app', 'icecast', $app->app_id]);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($icecast_rrd)) {
$rrd_filename = $icecast_rrd;
}
$ds = 'cpu';
$colour_area = 'F0E68C';
$colour_line = 'FF4500';
$colour_area_max = 'FFEE99';
$graph_max = 100;
$unit_text = '% Used';
require 'includes/html/graphs/generic_simplex.inc.php';