summaryrefslogtreecommitdiffstats
path: root/streaming/receiver.c
diff options
context:
space:
mode:
authorEmmanuel Vasilakis <mrzammler@mm.st>2021-10-25 11:32:22 +0300
committerGitHub <noreply@github.com>2021-10-25 11:32:22 +0300
commit7e9a2cbb0ba29a8144d30d20be43178faa0a7668 (patch)
tree1e3cdb9bc91b79cc3c0562274483c1c49e93d391 /streaming/receiver.c
parent6f54cd3116d1714b80f2204ce0c80a08595ef88a (diff)
Stream chart labels (#11675)
* stream chart labels * update stream protocol to 4 * only send CLABEL_COMMIT when there are labels * mark host as UNUSED * log error for stray CLABEL_COMMIT * remove commented define
Diffstat (limited to 'streaming/receiver.c')
-rw-r--r--streaming/receiver.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/streaming/receiver.c b/streaming/receiver.c
index 6771387920..bb7dca77c1 100644
--- a/streaming/receiver.c
+++ b/streaming/receiver.c
@@ -221,6 +221,8 @@ size_t streaming_parser(struct receiver_state *rpt, struct plugind *cd, FILE *fp
parser->plugins_action->overwrite_action = &pluginsd_overwrite_action;
parser->plugins_action->chart_action = &pluginsd_chart_action;
parser->plugins_action->set_action = &pluginsd_set_action;
+ parser->plugins_action->clabel_commit_action = &pluginsd_clabel_commit_action;
+ parser->plugins_action->clabel_action = &pluginsd_clabel_action;
user->parser = parser;