diff options
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; } |