Files
librenms-librenms/includes/html/graphs/application/postgres_cr.inc.php
T

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

43 lines
972 B
PHP
Raw Normal View History

<?php
2020-09-21 15:40:17 +02:00
$name = 'postgres';
$scale_min = 0;
$colours = 'mixed';
$unit_text = 'Per Second';
$unitlen = 10;
$bigdescrlen = 15;
$smalldescrlen = 15;
$dostack = 0;
$printtotal = 0;
$addarea = 1;
$transparency = 15;
if (isset($vars['database'])) {
$rrd_name_array = ['app', $name, $app->app_id, $vars['database']];
} else {
$rrd_name_array = ['app', $name, $app->app_id];
}
2021-03-28 17:25:30 -05:00
$rrd_filename = Rrd::name($device['hostname'], $rrd_name_array);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($rrd_filename)) {
$rrd_list = [
2020-09-21 15:40:17 +02:00
[
'filename' => $rrd_filename,
'descr' => 'Rollbacks',
'ds' => 'rollbacks',
'colour' => '28774F',
],
2020-09-21 15:40:17 +02:00
[
'filename' => $rrd_filename,
'descr' => 'Commits',
'ds' => 'commits',
'colour' => '28774F',
2020-09-21 15:40:17 +02:00
],
];
} else {
echo "file missing: $rrd_filename";
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_v3_multiline.inc.php';