mirror of
https://github.com/netdata/netdata.git
synced 2025-04-28 14:42:31 +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
11 lines
328 B
C
11 lines
328 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_VALUE_H
|
|
#define NETDATA_API_FORMATTER_VALUE_H
|
|
|
|
#include "../rrd2json.h"
|
|
|
|
extern NETDATA_DOUBLE
|
|
rrdr2value(RRDR *r, long i, RRDR_OPTIONS options, int *all_values_are_null, uint8_t *anomaly_rate, RRDDIM *temp_rd);
|
|
|
|
#endif //NETDATA_API_FORMATTER_VALUE_H
|