summaryrefslogtreecommitdiffstats
path: root/streaming/rrdpush.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-11-01 04:35:07 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-11-01 04:35:07 +0000
commita14f1d0e7c54950d80236aba6c0e26217952d77f (patch)
treec19c1562f9ca0578e314dd9a35c766bb4d5e7607 /streaming/rrdpush.c
parentReleasing debian version 1.43.1-1. (diff)
downloadnetdata-a14f1d0e7c54950d80236aba6c0e26217952d77f.tar.xz
netdata-a14f1d0e7c54950d80236aba6c0e26217952d77f.zip
Merging upstream version 1.43.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--streaming/rrdpush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/rrdpush.c b/streaming/rrdpush.c
index e8c46a021..a42bc13a0 100644
--- a/streaming/rrdpush.c
+++ b/streaming/rrdpush.c
@@ -231,7 +231,7 @@ int configured_as_parent() {
// chart labels
static int send_clabels_callback(const char *name, const char *value, RRDLABEL_SRC ls, void *data) {
BUFFER *wb = (BUFFER *)data;
- buffer_sprintf(wb, "CLABEL \"%s\" \"%s\" %d\n", name, value, ls);
+ buffer_sprintf(wb, "CLABEL \"%s\" \"%s\" %d\n", name, value, ls & ~(RRDLABEL_FLAG_INTERNAL));
return 1;
}