Files

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

41 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2016-10-08 15:25:50 -05:00
<?php
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2021-02-09 00:29:04 +01:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-10-08 15:25:50 -05:00
*
* @package LibreNMS
2021-02-09 00:29:04 +01:00
* @link https://www.librenms.org
2016-10-08 15:25:50 -05:00
* @copyright 2016 Karl Shea, LibreNMS
* @author Karl Shea <karl@karlshea.com>
*
*/
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2016-10-08 15:25:50 -05:00
$scale_min = 0;
$ds = 'mode';
$colour_area = 'FFCECE';
$colour_line = '880000';
$colour_area_max = 'FFCCCC';
$graph_max = 0;
$unit_text = 'Mode';
$gpsd = Rrd::name($device['hostname'], ['app', 'gpsd', $app->app_id]);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($gpsd)) {
2016-10-08 15:25:50 -05:00
$rrd_filename = $gpsd;
} else {
echo "file missing: $rrd_filename";
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';