1 Star 0 Fork 0

wlnmp/cacti

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
graph.php 21.01 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2019 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
$guest_account = true;
include('./include/auth.php');
include_once('./lib/rrd.php');
/* set default action */
set_default_action('view');
if (!isset_request_var('view_type')) {
set_request_var('view_type', '');
}
/* ================= input validation ================= */
get_filter_request_var('rra_id', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([0-9]+|all)$/')));
get_filter_request_var('local_graph_id');
get_filter_request_var('graph_end');
get_filter_request_var('graph_start');
get_filter_request_var('view_type', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z0-9]+)$/')));
/* ==================================================== */
api_plugin_hook_function('graph');
include_once('./lib/html_tree.php');
$refresh['seconds'] = read_config_option('page_refresh');
$refresh['page'] = 'graph.php?local_graph_id=' . get_request_var('local_graph_id') . '&header=false';
$refresh['logout'] = 'false';
set_page_refresh($refresh);
top_graph_header();
if (!isset_request_var('rra_id')) {
set_request_var('rra_id', 'all');
}
if (get_request_var('rra_id') == 'all' || isempty_request_var('rra_id')) {
$sql_where = ' AND dspr.id IS NOT NULL';
} else {
$sql_where = ' AND dspr.id=' . get_request_var('rra_id');
}
/* make sure the graph requested exists (sanity) */
if (!(db_fetch_cell_prepared('SELECT local_graph_id FROM graph_templates_graph WHERE local_graph_id = ?', array(get_request_var('local_graph_id'))))) {
print "<strong><font class='txtErrorTextBox'>GRAPH DOES NOT EXIST</font></strong>";
bottom_footer();
exit;
}
/* take graph permissions into account here */
if (!is_graph_allowed(get_request_var('local_graph_id'))) {
header('Location: permission_denied.php');
exit;
}
$graph_title = get_graph_title(get_request_var('local_graph_id'));
if (get_request_var('action') != 'properties') {
print "<table width='100%' class='cactiTable'>";
}
$rras = get_associated_rras(get_request_var('local_graph_id'), $sql_where);
switch (get_request_var('action')) {
case 'view':
api_plugin_hook_function('page_buttons',
array(
'lgid' => get_request_var('local_graph_id'),
'leafid' => '',//$leaf_id,
'mode' => 'mrtg',
'rraid' => get_request_var('rra_id')
)
);
?>
<tr class='tableHeader'>
<td colspan='3' class='textHeaderDark'>
<strong><?php print __('Viewing Graph');?></strong> '<?php print html_escape($graph_title);?>'
<script type='text/javascript'>
$(function() {
$('#navigation').show();
$('#navigation_right').show();
});
</script>
</td>
</tr>
<?php
$graph = db_fetch_row_prepared('SELECT local_graph_id, width, height
FROM graph_templates_graph
WHERE local_graph_id = ?',
array(get_request_var('local_graph_id')));
$i = 0;
if (cacti_sizeof($rras)) {
$graph_end = time() - 30;
foreach ($rras as $rra) {
if (!empty($rra['timespan'])) {
$graph_start = $graph_end - $rra['timespan'];
} else {
$graph_start = $graph_end - ($rra['step'] * $rra['rows'] * $rra['steps']);
}
$aggregate_url = aggregate_build_children_url(get_request_var('local_graph_id'), $graph_start, $graph_end, $rra['id']);
?>
<tr class='tableRowGraph'>
<td class='center'>
<table>
<tr>
<td>
<div class='graphWrapper' id='wrapper_<?php print $graph['local_graph_id'] ?>' graph_id='<?php print $graph['local_graph_id'];?>' rra_id='<?php print $rra['id'];?>' graph_width='<?php print $graph['width'];?>' graph_height='<?php print $graph['height'];?>' graph_start='<?php print $graph_start;?>' graph_end='<?php print $graph_end;?>' title_font_size='<?php print ((read_user_setting("custom_fonts") == "on") ? read_user_setting("title_size") : read_config_option("title_size"));?>'></div>
</td>
<td id='dd<?php print get_request_var('local_graph_id');?>' style='vertical-align:top;' class='graphDrillDown noprint'>
<a class='iconLink utils' href='#' id='graph_<?php print get_request_var('local_graph_id');?>_util' graph_start='<?php print $graph_start;?>' graph_end='<?php print $graph_end;?>' rra_id='<?php print $rra['id'];?>'><img class='drillDown' src='<?php print $config['url_path'] . "images/cog.png";?>' alt='' title='<?php print __esc('Graph Details, Zooming and Debugging Utilities');?>'></a><br>
<a class='iconLink csv' href='<?php print html_escape($config['url_path'] . 'graph_xport.php?local_graph_id=' . get_request_var('local_graph_id') . '&rra_id=' . $rra['id'] . '&view_type=' . get_request_var('view_type') . '&graph_start=' . $graph_start . '&graph_end=' . $graph_end);?>'><img src='<?php print $config['url_path'] . "images/table_go.png";?>' alt='' title='<?php print __esc('CSV Export');?>'></a><br>
<?php if (read_config_option('realtime_enabled') == 'on' || is_realm_allowed(25)) print "<a class='iconLink' href='#' onclick=\"window.open('".$config['url_path']."graph_realtime.php?top=0&left=0&local_graph_id=" . get_request_var('local_graph_id') . "', 'popup_" . get_request_var('local_graph_id') . "', 'directories=no,toolbar=no,menubar=no,resizable=yes,location=no,scrollbars=no,status=no,titlebar=no,width=650,height=300');return false\"><img src='" . $config['url_path'] . "images/chart_curve_go.png' alt='' title='" . __esc('Click to view just this Graph in Real-time') . "'></a><br/>\n";?>
<?php print ($aggregate_url != '' ? $aggregate_url:'')?>
<?php api_plugin_hook('graph_buttons', array('hook' => 'view', 'local_graph_id' => get_request_var('local_graph_id'), 'rra' => $rra['id'], 'view_type' => get_request_var('view_type'))); ?>
</td>
</tr>
<tr>
<td class='no-print center'>
<span><?php print html_escape($rra['name']);?></span>
</td>
</tr>
</table>
</td>
</tr>
<?php
$i++;
}
api_plugin_hook_function('tree_view_page_end');
}
?>
<script type='text/javascript'>
/* turn off the page refresh */
var refreshMSeconds=9999999;
var originalWidth = null;
function initializeGraph() {
$('.graphWrapper').each(function() {
var itemWrapper=$(this);
var itemGraph=$(this).find('.graphimage');
if (itemGraph.length != 1) {
itemGraph = itemWrapper;
}
graph_id = itemGraph.attr('graph_id');
rra_id = itemGraph.attr('rra_id');
graph_height = itemGraph.attr('graph_height');
graph_width = itemGraph.attr('graph_width');
graph_start = itemGraph.attr('graph_start');
graph_end = itemGraph.attr('graph_end');
$.getJSON(urlPath+'graph_json.php?'+
'local_graph_id='+graph_id+
'&graph_height='+graph_height+
'&graph_start='+graph_start+
'&graph_end='+graph_end+
'&rra_id='+rra_id+
'&graph_width='+graph_width+
'&disable_cache=true'+
<?php print (isset_request_var('thumbnails') && get_request_var('thumbnails') == 'true' ? "'&graph_nolegend=true'":"''");?>)
.done(function(data) {
wrapper=$('#wrapper_'+data.local_graph_id+'[rra_id=\''+data.rra_id+'\']');
wrapper.html(
"<img class='graphimage' id='graph_"+data.local_graph_id+
"' src='data:image/"+data.type+";base64,"+data.image+
"' rra_id='"+data.rra_id+
"' graph_id='"+data.local_graph_id+
"' graph_start='"+data.graph_start+
"' graph_end='"+data.graph_end+
"' graph_left='"+data.graph_left+
"' graph_top='"+data.graph_top+
"' graph_width='"+data.graph_width+
"' graph_height='"+data.graph_height+
"' image_width='"+data.image_width+
"' image_height='"+data.image_height+
"' canvas_left='"+data.graph_left+
"' canvas_top='"+data.graph_top+
"' canvas_width='"+data.graph_width+
"' canvas_height='"+data.graph_height+
"' width='"+data.image_width+
"' height='"+data.image_height+
"' value_min='"+data.value_min+
"' value_max='"+data.value_max+"'>"
);
responsiveResizeGraphs();
})
.fail(function(data) {
getPresentHTTPError(data);
});
});
$('a[id$="_util"]').unbind('click').click(function() {
graph_id=$(this).attr('id').replace('graph_','').replace('_util','');
rra_id=$(this).attr('rra_id');
graph_start=$(this).attr('graph_start');
graph_end=$(this).attr('graph_end');
$.get(urlPath+'graph.php?action=zoom&header=false&local_graph_id='+graph_id+'&rra_id='+rra_id+'&graph_start='+graph_start+'&graph_end='+graph_end)
.done(function(data) {
$('#main').html(data);
$('#breadcrumbs').append('<li><a id="nav_util" href="#"><?php print __('Utility View');?></a></li>');
applySkin();
})
.fail(function(data) {
getPresentHTTPError(data);
});
});
}
$(function() {
pageAction = 'graph';
initializeGraph();
$('#navigation').show();
$('#navigation_right').show();
});
</script>
<?php
break;
case 'zoom':
/* find the maximum time span a graph can show */
$max_timespan=1;
if (cacti_sizeof($rras)) {
foreach ($rras as $rra) {
if ($rra['steps'] * $rra['rows'] * $rra['rrd_step'] > $max_timespan) {
$max_timespan = $rra['steps'] * $rra['rows'] * $rra['rrd_step'];
}
}
}
/* fetch information for the current RRA */
if (isset_request_var('rra_id') && get_request_var('rra_id') > 0) {
$rra = db_fetch_row_prepared('SELECT dspr.id, step, steps, dspr.name, `rows`
FROM data_source_profiles_rra AS dspr
INNER JOIN data_source_profiles AS dsp
ON dsp.id=dspr.data_source_profile_id
WHERE dspr.id = ?', array(get_request_var('rra_id')));
$rra['timespan'] = $rra['steps'] * $rra['step'] * $rra['rows'];
} else {
$rra = db_fetch_row_prepared('SELECT dspr.id, step, steps, dspr.name, `rows`
FROM data_source_profiles_rra AS dspr
INNER JOIN data_source_profiles AS dsp
ON dsp.id=dspr.data_source_profile_id
WHERE dspr.id = ?', array($rras[0]['id']));
$rra['timespan'] = $rra['steps'] * $rra['step'] * $rra['rows'];
}
/* define the time span, which decides which rra to use */
$timespan = -($rra['timespan']);
/* find the step and how often this graph is updated with new data */
$ds_step = db_fetch_cell_prepared('SELECT
data_template_data.rrd_step
FROM (data_template_data, data_template_rrd, graph_templates_item)
WHERE graph_templates_item.task_item_id = data_template_rrd.id
AND data_template_rrd.local_data_id = data_template_data.local_data_id
AND graph_templates_item.local_graph_id = ?
LIMIT 0,1', array(get_request_var('local_graph_id')));
$ds_step = empty($ds_step) ? 300 : $ds_step;
$seconds_between_graph_updates = ($ds_step * $rra['steps']);
$now = time();
if (isset_request_var('graph_end') && (get_request_var('graph_end') <= $now - $seconds_between_graph_updates)) {
$graph_end = get_request_var('graph_end');
} else {
$graph_end = $now - $seconds_between_graph_updates;
}
if (isset_request_var('graph_start')) {
if (($graph_end - get_request_var('graph_start'))>$max_timespan) {
$graph_start = $now - $max_timespan;
}else {
$graph_start = get_request_var('graph_start');
}
} else {
$graph_start = $now + $timespan;
}
/* required for zoom out function */
if ($graph_start == $graph_end) {
$graph_start--;
}
$graph = db_fetch_row_prepared('SELECT width, height, title_cache, local_graph_id FROM graph_templates_graph WHERE local_graph_id = ?', array(get_request_var('local_graph_id')));
$graph_height = $graph['height'];
$graph_width = $graph['width'];
if (read_user_setting('custom_fonts') == 'on' & read_user_setting('title_size') != '') {
$title_font_size = read_user_setting('title_size');
} elseif (read_config_option('title_size') != '') {
$title_font_size = read_config_option('title_size');
}else {
$title_font_size = 10;
}
?>
<tr class='tableHeader'>
<td colspan='3' class='textHeaderDark'>
<strong><?php print __('Graph Utility View');?></strong> '<?php print html_escape($graph_title);?>'
</td>
</tr>
<tr class='tableRowGraph'>
<td class='center'>
<table>
<tr>
<td class='center'>
<div class='graphWrapper' id='wrapper_<?php print $graph['local_graph_id']?>' rra_id='<?php print $rra['id'];?>' graph_width='<?php print $graph['width'];?>' graph_height='<?php print $graph['height'];?>' title_font_size='<?php print ((read_user_setting('custom_fonts') == 'on') ? read_user_setting('title_size') : read_config_option('title_size'));?>'></div>
<?php print (read_user_setting('show_graph_title') == 'on' ? "<span class='center'>" . html_escape($graph['title_cache']) . '</span>' : '');?>
</td>
<td id='dd<?php print $graph['local_graph_id'];?>' style='vertical-align:top;' class='graphDrillDown noprint'>
<a href='#' id='graph_<?php print $graph['local_graph_id'];?>_properties' class='iconLink properties'>
<img class='drillDown' src='<?php print $config['url_path'] . 'images/graph_properties.gif';?>' alt='' title='<?php print __esc('Graph Source/Properties');?>'>
</a>
<br>
<a href='#' id='graph_<?php print $graph['local_graph_id'];?>_csv' class='iconLink properties'>
<img class='drillDown' src='<?php print $config['url_path'] . 'images/table_go.png';?>' alt='' title='<?php print __esc('Graph Data');?>'>
</a>
<br>
<?php api_plugin_hook('graph_buttons', array('hook' => 'zoom', 'local_graph_id' => get_request_var('local_graph_id'), 'rra' => get_request_var('rra_id'), 'view_type' => get_request_var('view_type'))); ?>
</td>
</tr>
<tr>
</tr>
</table>
</td>
</tr>
<tr>
<td style='display:none;'>
<input type='button' class='ui-button ui-corner-all ui-widget' name='button_refresh_x' value='<?php print __esc('Refresh');?>' onClick='refreshGraph()'>
<input type='textbox' class='ui-state-default ui-corner-all' id='date1' value=''>
<input type='textbox' class='ui-state-default ui-corner-all' id='date2' value=''>
<input type='textbox' class='ui-state-default ui-corner-all' id='graph_start' value='<?php print $graph_start;?>'>
<input type='textbox' class='ui-state-default ui-corner-all' id='graph_end' value='<?php print $graph_end;?>'>
</td>
</tr>
<tr class='odd'>
<td id='data'></td>
</tr>
<script type='text/javascript'>
var graph_id=<?php print get_request_var('local_graph_id') . ";\n";?>
var props_on=false;
var graph_data_on=true;
/* turn off the page refresh */
var refreshMSeconds=9999999;
function refreshGraph() {
$('#graph_start').val(getTimestampFromDate($('#date1').val()));
$('#graph_end').val(getTimestampFromDate($('#date2').val()));
now = Math.floor($.now()/1000);
if ($('#graph_end').val() > now) {
$('#graph_end').val(now);
}
initializeGraph();
}
function graphProperties() {
$.get(urlPath+'graph.php?action=properties&header=false&local_graph_id='+graph_id+'&rra_id=<?php print get_request_var('rra_id');?>&view_type=<?php print get_request_var('view_type');?>&graph_start='+$('#graph_start').val()+'&graph_end='+$('#graph_end').val())
.done(function(data) {
$('#data').html(data);
})
.fail(function(data) {
getPresentHTTPError(data);
});
props_on = true;
graph_data_on = false;
}
function graphXport() {
$.get(urlPath+'graph_xport.php?local_graph_id='+graph_id+'&rra_id=0&format=table&graph_start='+$('#graph_start').val()+'&graph_end='+$('#graph_end').val())
.done(function(data) {
$('#data').html(data);
resizeWrapper();
$('.download').click(function(event) {
event.preventDefault;
graph_id=$(this).attr('id').replace('graph_','');
document.location = urlPath+'graph_xport.php?local_graph_id='+graph_id+'&rra_id=0&view_type=tree&graph_start='+$('#graph_start').val()+'&graph_end='+$('#graph_end').val();
});
})
.fail(function(data) {
getPresentHTTPError(data);
});
props_on = false;
graph_data_on = true;
}
function initializeGraph() {
$('.graphWrapper').each(function() {
graph_id=$(this).attr('id').replace('wrapper_','');
graph_height=$(this).attr('graph_height');
graph_width=$(this).attr('graph_width');
rra_id=$(this).attr('rra_id');
if (!(rra_id > 0)) {
rra_id = 0;
}
$.getJSON(urlPath+'graph_json.php?rra_id='+rra_id+
'&local_graph_id='+graph_id+
'&graph_start='+$('#graph_start').val()+
'&graph_end='+$('#graph_end').val()+
'&graph_height='+graph_height+
'&graph_width='+graph_width+
'&disable_cache=true'+
<?php print (isset_request_var('thumbnails') && get_request_var('thumbnails') == 'true' ? "'&graph_nolegend=true'":"''");?>)
.done(function(data) {
$('#wrapper_'+data.local_graph_id).html(
"<img class='graphimage' id='graph_"+data.local_graph_id+
"' src='data:image/"+data.type+";base64,"+data.image+
"' rra_id='"+data.rra_id+
"' graph_id='"+data.local_graph_id+
"' graph_start='"+data.graph_start+
"' graph_end='"+data.graph_end+
"' graph_left='"+data.graph_left+
"' graph_top='"+data.graph_top+
"' graph_width='"+data.graph_width+
"' graph_height='"+data.graph_height+
"' image_width='"+data.image_width+
"' image_height='"+data.image_height+
"' canvas_left='"+data.graph_left+
"' canvas_top='"+data.graph_top+
"' canvas_width='"+data.graph_width+
"' canvas_height='"+data.graph_height+
"' width='"+data.image_width+
"' height='"+data.image_height+
"' value_min='"+data.value_min+
"' value_max='"+data.value_max+"'>"
);
$('#graph_start').val(data.graph_start);
$('#graph_end').val(data.graph_end);
var graph_id = '#graph_'+data.local_graph_id;
if (data.rra_id > 0) {
graph_id += '[rra_id=\'' + data.rra_id + '\']';
}
$(graph_id).zoom({
inputfieldStartTime : 'date1',
inputfieldEndTime : 'date2',
serverTimeOffset : <?php print date('Z') . "\n";?>
});
if (graph_data_on) {
graphXport();
}else if (props_on) {
graphProperties();
}
responsiveResizeGraphs();
})
.fail(function(data) {
getPresentHTTPError(data);
});
});
$('a[id$="_properties"]').unbind('click').click(function() {
graph_id=$(this).attr('id').replace('graph_', '').replace('_properties', '');
graphProperties();
});
$('a[id$="_csv"]').unbind('click').click(function() {
graph_id=$(this).attr('id').replace('graph_', '').replace('_csv', '');
graphXport();
});
}
$(function() {
pageAction = 'graph';
initializeGraph();
$('#navigation').show();
$('#navigation_right').show();
});
</script>
<?php
break;
case 'properties':
$graph_data_array['print_source'] = true;
/* override: graph start time (unix time) */
if (!isempty_request_var('graph_start')) {
$graph_data_array['graph_start'] = get_request_var('graph_start');
}
/* override: graph end time (unix time) */
if (!isempty_request_var('graph_end')) {
$graph_data_array['graph_end'] = get_request_var('graph_end');
}
$graph_data_array['output_flag'] = RRDTOOL_OUTPUT_STDERR;
$graph_data_array['print_source'] = 1;
print "<table class='center' width='100%' class='cactiTable'<tr><td>\n";
print "<table class='cactiTable' width='100%'>\n";
print "<tr class='tableHeader'><td colspan='3' class='linkOverDark' style='font-weight:bold;'>" . __('RRDtool Graph Syntax') . "</td></tr>\n";
print "<tr><td><pre>\n";
print "<span class='textInfo'>" . __('RRDtool Command:') . "</span><br>";
$null_param = array();
print @rrdtool_function_graph(get_request_var('local_graph_id'), get_request_var('rra_id'), $graph_data_array, '', $null_param, $_SESSION['sess_user_id']);
unset($graph_data_array['print_source']);
print "<span class='textInfo'>" . __('RRDtool Says:') . "</span><br>";
if ($config['poller_id'] == 1) {
print @rrdtool_function_graph(get_request_var('local_graph_id'), get_request_var('rra_id'), $graph_data_array, '', $null_param, $_SESSION['sess_user_id']);
} else {
print __esc('Not Checked');
}
print "</pre></td></tr>\n";
print "</table></td></tr></table>\n";
exit;
break;
}
print '</table>';
bottom_footer();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/whsir/cacti.git
git@gitee.com:whsir/cacti.git
whsir
cacti
cacti
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385