summaryrefslogtreecommitdiffstats
path: root/exporting
diff options
context:
space:
mode:
authorStelios Fragkakis <52996999+stelfrag@users.noreply.github.com>2020-06-12 10:35:17 +0300
committerGitHub <noreply@github.com>2020-06-12 10:35:17 +0300
commit1bd8a255441de6056a0d51a7bb787f76b590ffb6 (patch)
tree5b0ae5ca07d19e2323e202e72ca15247409b0a2d /exporting
parent45747d3e47cde80589bf702c92ff9557fe8b7f7d (diff)
Add support for persistent metadata (#9324)
* Implemented collector metadata logging * Added persistent GUIDs for charts and dimensions * Added metadata log replay and automatic compaction * Added detection of charts with no active collector (archived) * Added new endpoint to report archived charts via `/api/v1/archivedcharts` * Added support for collector metadata update Co-authored-by: Markos Fountoulakis <44345837+mfundul@users.noreply.github.com>
Diffstat (limited to 'exporting')
-rw-r--r--exporting/tests/netdata_doubles.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/exporting/tests/netdata_doubles.c b/exporting/tests/netdata_doubles.c
index f4da7769f6..f24c746618 100644
--- a/exporting/tests/netdata_doubles.c
+++ b/exporting/tests/netdata_doubles.c
@@ -100,7 +100,9 @@ RRDSET *rrdset_create_custom(
int update_every,
RRDSET_TYPE chart_type,
RRD_MEMORY_MODE memory_mode,
- long history_entries)
+ long history_entries,
+ int is_archived,
+ uuid_t *chart_uuid)
{
check_expected_ptr(host);
check_expected_ptr(type);
@@ -117,6 +119,8 @@ RRDSET *rrdset_create_custom(
check_expected(chart_type);
UNUSED(memory_mode);
UNUSED(history_entries);
+ UNUSED(is_archived);
+ UNUSED(chart_uuid);
function_called();