@cryptotaxi247 / netdata-1 / commits / 215b19972

Update cloud virtual host name (#19163)

* Update vnode host info metadata to cloud * Check if host is already created * Simplify check

Stelios Fragkakis committed Dec 9, 2024 at 17:44 UTC 215b199727df5a3e035cd35834ccd33dadcea60c
1 file changed +4 -1
src/plugins.d/pluginsd_parser.c
+4 -1
@@ -219,7 +219,10 @@ static inline PARSER_RC pluginsd_host_define_end(char **words __maybe_unused, si
219
220 rrdhost_flag_clear(host, RRDHOST_FLAG_ORPHAN);
221 rrdcontext_host_child_connected(host);
222 - schedule_node_state_update(host, 100);
222 + if (host->aclk_config)
223 + aclk_queue_node_info(host, true);
224 + else
225 + schedule_node_state_update(host, 100);
226
227 return PARSER_RC_OK;
228 }