mirror of
https://github.com/netdata/netdata.git
synced 2025-05-15 14:00:42 +00:00

* Add a new parameter (list of dimensions for the context query) to rrdr2ssv & rrdr2value Add the parameter to the function calls * Use the temporary dimension list (if available) for the calculations
10 lines
328 B
C
10 lines
328 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_SSV_H
|
|
#define NETDATA_API_FORMATTER_SSV_H
|
|
|
|
#include "../rrd2json.h"
|
|
|
|
extern void rrdr2ssv(RRDR *r, BUFFER *wb, RRDR_OPTIONS options, const char *prefix, const char *separator, const char *suffix, RRDDIM *temp_rd);
|
|
|
|
#endif //NETDATA_API_FORMATTER_SSV_H
|