mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 15:54:29 +02:00
Added new condition to dashboard and non avg only in simple graphs
This commit is contained in:
parent
b9db37f663
commit
77b5e74343
@ -470,20 +470,6 @@ function grafico_modulo_sparse_data_chart (&$chart, &$chart_data_extra, &$long_i
|
|||||||
$series_type['unknown'.$series_suffix] = 'area';
|
$series_type['unknown'.$series_suffix] = 'area';
|
||||||
}
|
}
|
||||||
|
|
||||||
//$chart[$timestamp]['count'] = 0;
|
|
||||||
/////////
|
|
||||||
//$chart[$timestamp]['timestamp_bottom'] = $timestamp;
|
|
||||||
//$chart[$timestamp]['timestamp_top'] = $timestamp + $interval;
|
|
||||||
/////////
|
|
||||||
|
|
||||||
//Baseline was replaced by compare graphs feature
|
|
||||||
/*if ($baseline) {
|
|
||||||
$chart[$timestamp]['baseline'.$series_suffix] = array_shift ($baseline_data);
|
|
||||||
if ($chart[$timestamp]['baseline'.$series_suffix] == NULL) {
|
|
||||||
$chart[$timestamp]['baseline'.$series_suffix] = 0;
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
if (!empty($event_ids)) {
|
if (!empty($event_ids)) {
|
||||||
$chart_extra_data[count($chart)-1]['events'] = implode(',',$event_ids);
|
$chart_extra_data[count($chart)-1]['events'] = implode(',',$event_ids);
|
||||||
}
|
}
|
||||||
@ -748,8 +734,7 @@ function grafico_modulo_sparse_data ($agent_module_id, $period, $show_events,
|
|||||||
$color['min'.$series_suffix] = array(
|
$color['min'.$series_suffix] = array(
|
||||||
'border' => '#000000', 'color' => $config['graph_color1'],
|
'border' => '#000000', 'color' => $config['graph_color1'],
|
||||||
'alpha' => CHART_DEFAULT_ALPHA);
|
'alpha' => CHART_DEFAULT_ALPHA);
|
||||||
//Baseline was replaced by compare graph feature
|
|
||||||
//$color['baseline'.$series_suffix] = array('border' => null, 'color' => '#0097BD', 'alpha' => 10);
|
|
||||||
$color['unit'.$series_suffix] = array('border' => null, 'color' => '#0097BC', 'alpha' => 10);
|
$color['unit'.$series_suffix] = array('border' => null, 'color' => '#0097BC', 'alpha' => 10);
|
||||||
|
|
||||||
if ($show_events) {
|
if ($show_events) {
|
||||||
@ -761,7 +746,17 @@ function grafico_modulo_sparse_data ($agent_module_id, $period, $show_events,
|
|||||||
$chart_extra_data['legend_alerts'] = $legend['alert'.$series_suffix_str];
|
$chart_extra_data['legend_alerts'] = $legend['alert'.$series_suffix_str];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($dashboard || $vconsole) {
|
if ($vconsole) {
|
||||||
|
$legend['sum'.$series_suffix] =
|
||||||
|
__('Last') . ': ' . remove_right_zeros(number_format($graph_stats['sum']['last'], $config['graph_precision'])) . ($unit ? ' ' . $unit : '') . ' ; '
|
||||||
|
. __('Avg') . ': ' . remove_right_zeros(number_format($graph_stats['sum']['avg'], $config['graph_precision'])) . ($unit ? ' ' . $unit : '');
|
||||||
|
}
|
||||||
|
else if ($dashboard && !$avg_only) {
|
||||||
|
$legend['max'.$series_suffix] = __('Max').$series_suffix_str.': '.__('Avg').': '.remove_right_zeros(number_format($graph_stats['max']['avg'], $config['graph_precision'])).' '.$unit.' ; '.__('Max').': '.remove_right_zeros(number_format($graph_stats['max']['max'], $config['graph_precision'])).' '.$unit.' ; '.__('Min').': '.remove_right_zeros(number_format($graph_stats['max']['min'], $config['graph_precision'])).' '.$unit;
|
||||||
|
$legend['sum'.$series_suffix] = __('Avg').$series_suffix_str.': '.__('Avg').': '.remove_right_zeros(number_format($graph_stats['sum']['avg'], $config['graph_precision'])).' '.$unit.' ; '.__('Max').': '.remove_right_zeros(number_format($graph_stats['sum']['max'], $config['graph_precision'])).' '.$unit.' ; '.__('Min').': '.remove_right_zeros(number_format($graph_stats['sum']['min'], $config['graph_precision'])).' '.$unit;
|
||||||
|
$legend['min'.$series_suffix] = __('Min').$series_suffix_str.': '.__('Avg').': '.remove_right_zeros(number_format($graph_stats['min']['avg'], $config['graph_precision'])).' '.$unit.' ; '.__('Max').': '.remove_right_zeros(number_format($graph_stats['min']['max'], $config['graph_precision'])).' '.$unit.' ; '.__('Min').': '.remove_right_zeros(number_format($graph_stats['min']['min'], $config['graph_precision'])).' '.$unit;
|
||||||
|
}
|
||||||
|
else if ($dashboard) {
|
||||||
$legend['sum'.$series_suffix] =
|
$legend['sum'.$series_suffix] =
|
||||||
__('Last') . ': ' . remove_right_zeros(number_format($graph_stats['sum']['last'], $config['graph_precision'])) . ($unit ? ' ' . $unit : '') . ' ; '
|
__('Last') . ': ' . remove_right_zeros(number_format($graph_stats['sum']['last'], $config['graph_precision'])) . ($unit ? ' ' . $unit : '') . ' ; '
|
||||||
. __('Avg') . ': ' . remove_right_zeros(number_format($graph_stats['sum']['avg'], $config['graph_precision'])) . ($unit ? ' ' . $unit : '');
|
. __('Avg') . ': ' . remove_right_zeros(number_format($graph_stats['sum']['avg'], $config['graph_precision'])) . ($unit ? ' ' . $unit : '');
|
||||||
@ -774,12 +769,6 @@ function grafico_modulo_sparse_data ($agent_module_id, $period, $show_events,
|
|||||||
else {
|
else {
|
||||||
$legend['sum'.$series_suffix] = __('Avg').$series_suffix_str.': '.__('Avg').': '.remove_right_zeros(number_format($graph_stats['sum']['avg'], $config['graph_precision'])).' '.$unit.' ; '.__('Max').': '.remove_right_zeros(number_format($graph_stats['sum']['max'], $config['graph_precision'])).' '.$unit.' ; '.__('Min').': '.remove_right_zeros(number_format($graph_stats['sum']['min'], $config['graph_precision'])).' '.$unit;
|
$legend['sum'.$series_suffix] = __('Avg').$series_suffix_str.': '.__('Avg').': '.remove_right_zeros(number_format($graph_stats['sum']['avg'], $config['graph_precision'])).' '.$unit.' ; '.__('Max').': '.remove_right_zeros(number_format($graph_stats['sum']['max'], $config['graph_precision'])).' '.$unit.' ; '.__('Min').': '.remove_right_zeros(number_format($graph_stats['sum']['min'], $config['graph_precision'])).' '.$unit;
|
||||||
}
|
}
|
||||||
//Baseline was replaced by compare graph feature
|
|
||||||
/*if ($baseline) {
|
|
||||||
$legend['baseline'.$series_suffix] = __('Baseline');
|
|
||||||
}*/
|
|
||||||
//$legend['no_data'.$series_suffix] = __('No data').$series_suffix_str;
|
|
||||||
//$chart_extra_data['legend_no_data'] = $legend['no_data'.$series_suffix_str];
|
|
||||||
|
|
||||||
if ($show_unknown) {
|
if ($show_unknown) {
|
||||||
$legend['unknown'.$series_suffix] = __('Unknown').$series_suffix_str;
|
$legend['unknown'.$series_suffix] = __('Unknown').$series_suffix_str;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user