mirror of
https://github.com/netdata/netdata.git
synced 2025-04-28 22:52:30 +00:00

* netdata doubles * fix cmocka test * fix cmocka test again * fix left-overs of long double to NETDATA_DOUBLE * RRDDIM detached from disk representation; db settings in [db] section of netdata.conf * update the memory before saving * rrdset is now detached from file structures too * on memory mode map, update the memory mapped structures on every iteration * allow RRD_ID_LENGTH_MAX to be changed * granularity secs, back to update every * fix formatting * more formatting
15 lines
598 B
C
15 lines
598 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_QUERY_INCREMENTAL_SUM_H
|
|
#define NETDATA_API_QUERY_INCREMENTAL_SUM_H
|
|
|
|
#include "../query.h"
|
|
#include "../rrdr.h"
|
|
|
|
extern void grouping_create_incremental_sum(RRDR *r, const char *options __maybe_unused);
|
|
extern void grouping_reset_incremental_sum(RRDR *r);
|
|
extern void grouping_free_incremental_sum(RRDR *r);
|
|
extern void grouping_add_incremental_sum(RRDR *r, NETDATA_DOUBLE value);
|
|
extern NETDATA_DOUBLE grouping_flush_incremental_sum(RRDR *r, RRDR_VALUE_FLAGS *rrdr_value_options_ptr);
|
|
|
|
#endif //NETDATA_API_QUERY_INCREMENTAL_SUM_H
|