mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
missing graph types
git-svn-id: http://www.observium.org/svn/observer/trunk@3153 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
34
html/includes/graphs/application/memcached_data.inc.php
Normal file
34
html/includes/graphs/application/memcached_data.inc.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
include("memcached.inc.php");
|
||||
include("includes/graphs/common.inc.php");
|
||||
|
||||
$scale_min = 0;
|
||||
$colours = "mixed";
|
||||
$nototal = 0;
|
||||
$unit_text = "Packets/sec";
|
||||
$array = array(
|
||||
'limit_maxbytes' => array('descr' => 'Capacity', 'colour' => '555555'),
|
||||
'bytes' => array('descr' => 'Used', 'colour' => 'cc0000', 'areacolour' => 'ff999955'),
|
||||
);
|
||||
|
||||
$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");
|
||||
}
|
||||
|
||||
include("includes/graphs/generic_multi_line.inc.php");
|
||||
|
||||
?>
|
33
html/includes/graphs/application/memcached_items.inc.php
Normal file
33
html/includes/graphs/application/memcached_items.inc.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
include("memcached.inc.php");
|
||||
include("includes/graphs/common.inc.php");
|
||||
|
||||
$scale_min = 0;
|
||||
$colours = "mixed";
|
||||
$nototal = 0;
|
||||
$unit_text = "Items";
|
||||
$array = array(
|
||||
'curr_items' => array('descr' => 'Items', 'colour' => '555555'),
|
||||
);
|
||||
|
||||
$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");
|
||||
}
|
||||
|
||||
include("includes/graphs/generic_multi_line.inc.php");
|
||||
|
||||
?>
|
20
html/includes/graphs/application/memcached_threads.inc.php
Normal file
20
html/includes/graphs/application/memcached_threads.inc.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
|
||||
include("memcached.inc.php");
|
||||
include("includes/graphs/common.inc.php");
|
||||
$device = device_by_id_cache($id);
|
||||
|
||||
include("includes/graphs/common.inc.php");
|
||||
|
||||
$scale_min = 0;
|
||||
$ds = "threads";
|
||||
$colour_area = "F6F6F6";
|
||||
$colour_line = "555555";
|
||||
$colour_area_max = "FFEE99";
|
||||
#$graph_max = 100;
|
||||
$unit_text = "Threads";
|
||||
|
||||
include("includes/graphs/generic_simplex.inc.php");
|
||||
|
||||
?>
|
51
html/includes/graphs/application/mysql_status.inc.php
Normal file
51
html/includes/graphs/application/mysql_status.inc.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
include('includes/graphs/common.inc.php');
|
||||
|
||||
$rrd_filename = $config["rrd_dir"] . '/' . $device["hostname"] . '/app-mysql-'.$app["app_id"].'-status.rrd';
|
||||
|
||||
$array = array(
|
||||
'State_closing_tables' => 'd2',
|
||||
'State_copying_to_tmp_table' => 'd3',
|
||||
'State_end' => 'd4',
|
||||
'State_freeing_items' => 'd5',
|
||||
'State_init' => 'd6',
|
||||
'State_locked' => 'd7',
|
||||
'State_login' => 'd8',
|
||||
'State_preparing' => 'd9',
|
||||
'State_reading_from_net' => 'da',
|
||||
'State_sending_data' => 'db',
|
||||
'State_sorting_result' => 'dc',
|
||||
'State_statistics' => 'dd',
|
||||
'State_updating' => 'de',
|
||||
'State_writing_to_net' => 'df',
|
||||
'State_none' => 'dg',
|
||||
'State_other' => 'dh'
|
||||
);
|
||||
|
||||
$i = 0;
|
||||
if (is_file($rrd_filename))
|
||||
{
|
||||
foreach ($array as $vars => $ds)
|
||||
{
|
||||
$rrd_list[$i]['filename'] = $rrd_filename;
|
||||
if (is_array($vars))
|
||||
{
|
||||
$rrd_list[$i]['descr'] = $vars['descr'];
|
||||
} else {
|
||||
$rrd_list[$i]['descr'] = $vars;
|
||||
}
|
||||
$rrd_list[$i]['descr'] = str_replace("_", " ", $rrd_list[$i]['descr']);
|
||||
$rrd_list[$i]['descr'] = str_replace("State ", "", $rrd_list[$i]['descr']);
|
||||
$rrd_list[$i]['ds'] = $ds;
|
||||
$i++;
|
||||
}
|
||||
} else { echo("file missing: $file"); }
|
||||
|
||||
$colours = "mixed";
|
||||
$nototal = 1;
|
||||
$unit_text = "activity";
|
||||
|
||||
include("includes/graphs/generic_multi_simplex_seperated.inc.php");
|
||||
|
||||
?>
|
Reference in New Issue
Block a user