X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frouteros.c;h=1286805f1944c647ed0b25962d480e61ed8b7e8c;hb=711f5b6c86f51061c21bedcaa46214a01de0125c;hp=111feb6f81a1355eb48908e0bdbd25ed792fb899;hpb=733fc645b6389d1f42aef8f1c1631f1db7d58196;p=collectd.git diff --git a/src/routeros.c b/src/routeros.c index 111feb6f..1286805f 100644 --- a/src/routeros.c +++ b/src/routeros.c @@ -141,9 +141,17 @@ static void submit_regtable(cr_data_t *rd, /* {{{ */ if (r == NULL) return; + const char *name = r->radio_name; +#if ROS_VERSION >= ROS_VERSION_ENCODE(1, 1, 3) + if (name == NULL) + name = r->mac_address; +#endif + if (name == NULL) + name = "default"; + /*** RX ***/ snprintf(type_instance, sizeof(type_instance), "%s-%s-rx", r->interface, - r->radio_name ? r->radio_name : "default"); + name); cr_submit_gauge(rd, "bitrate", type_instance, (gauge_t)(1000000.0 * r->rx_rate)); cr_submit_gauge(rd, "signal_power", type_instance, @@ -152,7 +160,7 @@ static void submit_regtable(cr_data_t *rd, /* {{{ */ /*** TX ***/ snprintf(type_instance, sizeof(type_instance), "%s-%s-tx", r->interface, - r->radio_name ? r->radio_name : "default"); + name); cr_submit_gauge(rd, "bitrate", type_instance, (gauge_t)(1000000.0 * r->tx_rate)); cr_submit_gauge(rd, "signal_power", type_instance, @@ -160,8 +168,7 @@ static void submit_regtable(cr_data_t *rd, /* {{{ */ cr_submit_gauge(rd, "signal_quality", type_instance, (gauge_t)r->tx_ccq); /*** RX / TX ***/ - snprintf(type_instance, sizeof(type_instance), "%s-%s", r->interface, - r->radio_name ? r->radio_name : "default"); + snprintf(type_instance, sizeof(type_instance), "%s-%s", r->interface, name); cr_submit_io(rd, "if_octets", type_instance, (derive_t)r->rx_bytes, (derive_t)r->tx_bytes); cr_submit_gauge(rd, "snr", type_instance, (gauge_t)r->signal_to_noise); @@ -219,16 +226,16 @@ static int handle_system_health(__attribute__((unused)) ros_connection_t *c, /* {{{ */ const ros_system_health_t *r, __attribute__((unused)) void *user_data) { - cr_data_t *rd; if ((r == NULL) || (user_data == NULL)) - return (EINVAL); - rd = user_data; + return EINVAL; + + cr_data_t *rd = user_data; cr_submit_gauge(rd, "voltage", "system", (gauge_t)r->voltage); cr_submit_gauge(rd, "temperature", "system", (gauge_t)r->temperature); - return (0); + return 0; } /* }}} int handle_system_health */ #endif #endif @@ -297,12 +304,10 @@ static int cr_read(user_data_t *user_data) /* {{{ */ status = ros_system_health(rd->connection, handle_system_health, /* user data = */ rd); if (status != 0) { - char errbuf[128]; - ERROR("routeros plugin: ros_system_health failed: %s", - sstrerror(status, errbuf, sizeof(errbuf))); + ERROR("routeros plugin: ros_system_health failed: %s", STRERROR(status)); ros_disconnect(rd->connection); rd->connection = NULL; - return (-1); + return -1; } } #endif