X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fmqtt.c;h=315974b6f49a8b6b7d85a59427de1f0cc9a6026f;hb=ba4ddd3127e1ac4f98e09cbf255c8a10a1bd13eb;hp=95deb0075bb87540eb3d1b807d93340b94e92d59;hpb=79963d13c1884d1d92667cc502ad20758b084a12;p=collectd.git diff --git a/src/mqtt.c b/src/mqtt.c index 95deb007..315974b6 100644 --- a/src/mqtt.c +++ b/src/mqtt.c @@ -448,6 +448,7 @@ static int publish(mqtt_client_conf_t *conf, char const *topic, * measure; we will try to reconnect the next time we have to publish a * message */ conf->connected = 0; + mosquitto_disconnect(conf->mosq); pthread_mutex_unlock(&conf->lock); return (-1); @@ -461,6 +462,7 @@ static int format_topic(char *buf, size_t buf_len, data_set_t const *ds, value_list_t const *vl, mqtt_client_conf_t *conf) { char name[MQTT_MAX_TOPIC_SIZE]; int status; + char *c; if ((conf->topic_prefix == NULL) || (conf->topic_prefix[0] == 0)) return (FORMAT_VL(buf, buf_len, vl)); @@ -473,6 +475,10 @@ static int format_topic(char *buf, size_t buf_len, data_set_t const *ds, if ((status < 0) || (((size_t)status) >= buf_len)) return (ENOMEM); + while((c = strchr(buf, '#')) || (c = strchr(buf, '+'))) { + *c = '_'; + } + return (0); } /* int format_topic */ @@ -603,9 +609,9 @@ static int mqtt_config_publisher(oconfig_item_t *ci) { } ssnprintf(cb_name, sizeof(cb_name), "mqtt/%s", conf->name); - user_data_t user_data = {.data = conf}; - - plugin_register_write(cb_name, mqtt_write, &user_data); + plugin_register_write(cb_name, mqtt_write, &(user_data_t){ + .data = conf, + }); return (0); } /* mqtt_config_publisher */ @@ -734,7 +740,8 @@ static int mqtt_init(void) { status = plugin_thread_create(&subscribers[i]->thread, /* attrs = */ NULL, /* func = */ subscribers_thread, - /* args = */ subscribers[i]); + /* args = */ subscribers[i], + /* name = */ "mqtt"); if (status != 0) { char errbuf[1024]; ERROR("mqtt plugin: pthread_create failed: %s",