mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added Hit/Misses graphs for memcached
This commit is contained in:
40
html/includes/graphs/application/memcached_hitmiss.inc.php
Normal file
40
html/includes/graphs/application/memcached_hitmiss.inc.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
require 'memcached.inc.php';
|
||||
require 'includes/graphs/common.inc.php';
|
||||
|
||||
$scale_min = 0;
|
||||
$colours = 'mixed';
|
||||
$nototal = 0;
|
||||
$unit_text = 'Hits/Misses';
|
||||
$array = array(
|
||||
'get_hits' => array(
|
||||
'descr' => 'Hits',
|
||||
'colour' => '555555',
|
||||
),
|
||||
'get_misses' => array(
|
||||
'descr' => 'Misses',
|
||||
'colour' => 'cc0000',
|
||||
),
|
||||
);
|
||||
|
||||
$i = 0;
|
||||
|
||||
if (is_file($rrd_filename)) {
|
||||
foreach ($array as $ds => $vars) {
|
||||
$rrd_list[$i]['filename'] = $rrd_filename;
|
||||
$rrd_list[$i]['descr'] = $vars['descr'];
|
||||
$rrd_list[$i]['ds'] = $ds;
|
||||
$rrd_list[$i]['colour'] = $vars['colour'];
|
||||
if (!empty($vars['areacolour'])) {
|
||||
$rrd_list[$i]['areacolour'] = $vars['areacolour'];
|
||||
}
|
||||
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
else {
|
||||
echo "file missing: $file";
|
||||
}
|
||||
|
||||
require 'includes/graphs/generic_multi_line.inc.php';
|
Reference in New Issue
Block a user