diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-11-01 04:35:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-11-01 04:35:07 +0000 |
commit | a14f1d0e7c54950d80236aba6c0e26217952d77f (patch) | |
tree | c19c1562f9ca0578e314dd9a35c766bb4d5e7607 /streaming | |
parent | Releasing debian version 1.43.1-1. (diff) | |
download | netdata-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 'streaming')
-rw-r--r-- | streaming/rrdpush.c | 2 |
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; } |