Files

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

51 lines
1.5 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 <[email protected]>
*
*/
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;
$colours = 'mixed';
$unit_text = 'DOP';
$nototal = 1;
$rrd_filename = Rrd::name($device['hostname'], ['app', 'gpsd', $app->app_id]);
2016-10-08 15:25:50 -05:00
$array = [
2016-10-09 06:00:07 -05:00
'hdop' => ['descr' => 'Horizontal'],
2016-10-08 15:25:50 -05:00
'vdop' => ['descr' => 'Vertical'],
];
$i = 0;
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($rrd_filename)) {
2017-02-24 15:22:15 +00:00
foreach ($array as $ds => $var) {
2016-10-08 15:25:50 -05:00
$rrd_list[$i]['filename'] = $rrd_filename;
2017-02-24 15:22:15 +00:00
$rrd_list[$i]['descr'] = $var['descr'];
2016-10-08 15:25:50 -05:00
$rrd_list[$i]['ds'] = $ds;
2019-06-23 00:29:12 -05:00
$rrd_list[$i]['colour'] = \LibreNMS\Config::get("graph_colours.$colours" . ($i + 2));
2016-10-08 15:25:50 -05:00
$i++;
}
} else {
echo "file missing: $file";
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_line.inc.php';