gpt4 book ai didi

rrdtool - 自定义 Ganglia 集群图 - 如何显示平均指标值,而不是总指标值

转载 作者:行者123 更新时间:2023-12-04 20:50:02 28 4
gpt4 key购买 nike

您如何在自定义图表中显示平均值而不是总值?

以前,我通过创建自定义 .php 文件成功生成了集群摘要图,如下所述:

http://sourceforge.net/apps/trac/ganglia/wiki/Custom_graphs

但是,到目前为止,我一直想显示给定指标的每秒总操作数。但是现在,我有一些时间数据,我想在其中显示所有集群节点的平均(平均)指标值。这是怎么做的?在我当前的实现中,生成的图表显示了所有节点的总时间值,这没有帮助。

这是.php:

<?php

/* Pass in by reference! */
function graph_jmx_times_report ( &$rrdtool_graph ) {

global $context,
$hostname,
$graph_var,
$range,
$rrd_dir,
$size,
$strip_domainname;

if ($strip_domainname) {
$hostname = strip_domainname($hostname);
}

$jmx = $graph_var;
$title = $jmx.' Processing Time';
if ($context != 'host') {
$rrdtool_graph['title'] = $title;
} else {
$rrdtool_graph['title'] = "$hostname $title last $range";
}
$rrdtool_graph['lower-limit'] = '0';
$rrdtool_graph['vertical-label'] = 'milliseconds';
$rrdtool_graph['extras'] = '--rigid --base 1024';
$rrdtool_graph['height'] += ($size == 'medium') ? 89 : 0;

$series = "DEF:'tot_time'='${rrd_dir}/jmx_tomcat_proc_time_ms.rrd':'sum':AVERAGE"
."DEF:'fc_time'='${rrd_dir}/jmx_tomcat_freqcap_lookup_time_75.rrd':'sum':AVERAGE "
."DEF:'ro_time'='${rrd_dir}/jmx_tomcat_readonly_lookup_time_75.rrd':'sum':AVERAGE "
."DEF:'rt_time'='${rrd_dir}/jmx_tomcat_realtime_lookup_time_75.rrd':'sum':AVERAGE "
."AREA:'tot_time'#CFF1FC:'' "
."LINE2:'fc_time'#F19A2A:'Freq Cap 75' "
."LINE2:'ro_time'#66CC33:'Read-only 75' "
."LINE2:'rt_time'#CC99CC:'Realtime 75' "
."LINE2:'tot_time'#20ABD9:'Processing Time' "
;

$rrdtool_graph['series'] = $series;

return $rrdtool_graph;

}

?>

最佳答案

Ganglia 使用的 RRD 摘要有一个 num除了 sum 之外的数据源数据源。 num值表示主机数sum是根据汇总 RRD 计算得出的,并且仅在汇总 RRD 中可用。

您可以使用 RRDtool CDEF 指令通过除以 sum 来计算所有主机的平均值。来自 num .

下面是一个例子:

if ($context != 'host') { // cluster or grid summary graph context
$series =
"'DEF:fc_time_sum=${rrd_dir}/jmx_tomcat_freqcap_lookup_time_75.rrd:sum:AVERAGE' "
."'DEF:fc_time_num=${rrd_dir}/jmx_tomcat_freqcap_lookup_time_75.rrd:num:AVERAGE' "
."'CDEF:avg_fc_time=fc_time_sum,fc_time_num,/' "
."'LINE2:avg_fc_time#0000FF:Average Freq Cap 75' ";
} else { // single host graph context
//here you can't use the num data source
}

此平均值也显示在 sample_report.php 中文件包含在 ganglia-web 中。

关于rrdtool - 自定义 Ganglia 集群图 - 如何显示平均指标值,而不是总指标值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11998404/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com