Rrdcached application monitoring

Can collect data from the agent or by connecting directly
This commit is contained in:
Tony Murray
2016-06-08 20:40:51 -05:00
parent a68687de5e
commit 60624c1ac0
8 changed files with 207 additions and 10 deletions

View File

@@ -0,0 +1,31 @@
<?php
include 'rrdcached.inc.php';
$nototal = 1;
$colours = 'mixed';
$rrd_list = array(
array (
'ds' => 'updates_written',
'filename' => $rrd_filename,
'descr' => 'Updates Written',
),
array (
'ds' => 'data_sets_written',
'filename' => $rrd_filename,
'descr' => 'Data Sets Written',
),
array(
'ds' => 'updates_received',
'filename' => $rrd_filename,
'descr' => 'Updates Recieved',
),
array (
'ds' => 'flushes_received',
'filename' => $rrd_filename,
'descr' => 'Flushes Recieved',
),
);
require 'includes/graphs/generic_multi_line.inc.php';