2016-09-13 05:59:33 +03: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-09-13 05:59:33 +03:00
|
|
|
*
|
|
|
|
|
* @package LibreNMS
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2016-09-13 05:59:33 +03:00
|
|
|
* @copyright 2016 crcro
|
|
|
|
|
* @author Cercel Valentin <crc@nuamchefazi.ro>
|
2016-09-15 19:37:52 +03:00
|
|
|
*
|
2016-09-13 05:59:33 +03:00
|
|
|
*/
|
|
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/common.inc.php';
|
2016-09-13 05:59:33 +03:00
|
|
|
|
|
|
|
|
$scale_min = 0;
|
|
|
|
|
$ds = 'time_remaining';
|
|
|
|
|
$colour_area = 'EEEEEE';
|
|
|
|
|
$colour_line = '36393D';
|
|
|
|
|
$colour_area_max = 'FFEE99';
|
|
|
|
|
$graph_max = 0;
|
2016-09-15 19:37:52 +03:00
|
|
|
$unit_text = 'Minutes';
|
2022-07-22 16:01:55 -05:00
|
|
|
$ups_nut = Rrd::name($device['hostname'], ['app', 'ups-nut', $app->app_id]);
|
2021-03-28 17:25:30 -05:00
|
|
|
if (Rrd::checkRrdExists($ups_nut)) {
|
2016-09-13 05:59:33 +03:00
|
|
|
$rrd_filename = $ups_nut;
|
2016-09-20 22:01:29 +03:00
|
|
|
} else {
|
|
|
|
|
echo "file missing: $rrd_filename";
|
2016-09-13 05:59:33 +03:00
|
|
|
}
|
2016-09-20 22:01:29 +03:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/generic_simplex.inc.php';
|