mirror of
https://github.com/netdata/netdata.git
synced 2025-05-07 18:41:03 +00:00

* queries code cleanup; renaming of variables; user configurable; tuning for defaults * reformatted main queries array * added documentation about all queries * empty doc * changed resampling variable names * added documentation to query module functions * fixed typos * renames * identation * more renames * fixed a faulty function definition at backends
59 lines
1.5 KiB
C
59 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "average.h"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// average
|
|
|
|
struct grouping_average {
|
|
calculated_number sum;
|
|
size_t count;
|
|
};
|
|
|
|
void *grouping_create_average(RRDR *r) {
|
|
(void)r;
|
|
return callocz(1, sizeof(struct grouping_average));
|
|
}
|
|
|
|
// resets when switches dimensions
|
|
// so, clear everything to restart
|
|
void grouping_reset_average(RRDR *r) {
|
|
struct grouping_average *g = (struct grouping_average *)r->internal.grouping_data;
|
|
g->sum = 0;
|
|
g->count = 0;
|
|
}
|
|
|
|
void grouping_free_average(RRDR *r) {
|
|
freez(r->internal.grouping_data);
|
|
r->internal.grouping_data = NULL;
|
|
}
|
|
|
|
void grouping_add_average(RRDR *r, calculated_number value) {
|
|
if(!isnan(value)) {
|
|
struct grouping_average *g = (struct grouping_average *)r->internal.grouping_data;
|
|
g->sum += value;
|
|
g->count++;
|
|
}
|
|
}
|
|
|
|
calculated_number grouping_flush_average(RRDR *r, RRDR_VALUE_FLAGS *rrdr_value_options_ptr) {
|
|
struct grouping_average *g = (struct grouping_average *)r->internal.grouping_data;
|
|
|
|
calculated_number value;
|
|
|
|
if(unlikely(!g->count)) {
|
|
value = 0.0;
|
|
*rrdr_value_options_ptr |= RRDR_VALUE_EMPTY;
|
|
}
|
|
else {
|
|
if(unlikely(r->internal.resampling_group != 1))
|
|
value = g->sum / r->internal.resampling_divisor;
|
|
else
|
|
value = g->sum / g->count;
|
|
}
|
|
|
|
g->sum = 0.0;
|
|
g->count = 0;
|
|
|
|
return value;
|
|
}
|