mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Rrdcached application monitoring
Can collect data from the agent or by connecting directly
This commit is contained in:
31
html/includes/graphs/application/rrdcached_events.inc.php
Normal file
31
html/includes/graphs/application/rrdcached_events.inc.php
Normal 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';
|
Reference in New Issue
Block a user