X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frouteros.c;h=d61ffe984d36cfa2eaa3b74efce9872abdc9d648;hb=aff80830f1154a5b6c4da16a0b1033aafde14e24;hp=4fe33fa99bd9b9f0c82374082aedd331b7b8719d;hpb=3bd6fcdfd20002eee1f1803460728449c0c98f86;p=collectd.git diff --git a/src/routeros.c b/src/routeros.c index 4fe33fa9..d61ffe98 100644 --- a/src/routeros.c +++ b/src/routeros.c @@ -1,6 +1,6 @@ /** * collectd - src/routeros.c - * Copyright (C) 2009 Florian octo Forster + * Copyright (C) 2009,2010 Florian octo Forster * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,7 +16,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Authors: - * Florian octo Forster + * Florian octo Forster **/ #include "collectd.h" @@ -36,17 +36,21 @@ struct cr_data_s _Bool collect_interface; _Bool collect_regtable; + _Bool collect_cpu_load; + _Bool collect_memory; + _Bool collect_df; + _Bool collect_disk; }; typedef struct cr_data_s cr_data_t; static void cr_submit_io (cr_data_t *rd, const char *type, /* {{{ */ - const char *type_instance, counter_t rx, counter_t tx) + const char *type_instance, derive_t rx, derive_t tx) { value_t values[2]; value_list_t vl = VALUE_LIST_INIT; - values[0].counter = rx; - values[1].counter = tx; + values[0].derive = rx; + values[1].derive = tx; vl.values = values; vl.values_len = STATIC_ARRAY_SIZE (values); @@ -71,13 +75,13 @@ static void submit_interface (cr_data_t *rd, /* {{{ */ } cr_submit_io (rd, "if_packets", i->name, - (counter_t) i->rx_packets, (counter_t) i->tx_packets); + (derive_t) i->rx_packets, (derive_t) i->tx_packets); cr_submit_io (rd, "if_octets", i->name, - (counter_t) i->rx_bytes, (counter_t) i->tx_bytes); + (derive_t) i->rx_bytes, (derive_t) i->tx_bytes); cr_submit_io (rd, "if_errors", i->name, - (counter_t) i->rx_errors, (counter_t) i->tx_errors); + (derive_t) i->rx_errors, (derive_t) i->tx_errors); cr_submit_io (rd, "if_dropped", i->name, - (counter_t) i->rx_drops, (counter_t) i->tx_drops); + (derive_t) i->rx_drops, (derive_t) i->tx_drops); submit_interface (rd, i->next); } /* }}} void submit_interface */ @@ -110,6 +114,26 @@ static void cr_submit_gauge (cr_data_t *rd, const char *type, /* {{{ */ plugin_dispatch_values (&vl); } /* }}} void cr_submit_gauge */ +#if ROS_VERSION >= ROS_VERSION_ENCODE(1, 1, 0) +static void cr_submit_counter (cr_data_t *rd, const char *type, /* {{{ */ + const char *type_instance, derive_t value) +{ + value_t values[1]; + value_list_t vl = VALUE_LIST_INIT; + + values[0].derive = value; + + vl.values = values; + vl.values_len = STATIC_ARRAY_SIZE (values); + sstrncpy (vl.host, rd->node, sizeof (vl.host)); + sstrncpy (vl.plugin, "routeros", sizeof (vl.plugin)); + sstrncpy (vl.type, type, sizeof (vl.type)); + sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); + + plugin_dispatch_values (&vl); +} /* }}} void cr_submit_gauge */ +#endif + static void submit_regtable (cr_data_t *rd, /* {{{ */ const ros_registration_table_t *r) { @@ -142,7 +166,7 @@ static void submit_regtable (cr_data_t *rd, /* {{{ */ ssnprintf (type_instance, sizeof (type_instance), "%s-%s", r->interface, r->radio_name); cr_submit_io (rd, "if_octets", type_instance, - (counter_t) r->rx_bytes, (counter_t) r->tx_bytes); + (derive_t) r->rx_bytes, (derive_t) r->tx_bytes); cr_submit_gauge (rd, "snr", type_instance, (gauge_t) r->signal_to_noise); submit_regtable (rd, r->next); @@ -158,6 +182,44 @@ static int handle_regtable (__attribute__((unused)) ros_connection_t *c, /* {{{ return (0); } /* }}} int handle_regtable */ +#if ROS_VERSION >= ROS_VERSION_ENCODE(1, 1, 0) +static int handle_system_resource (__attribute__((unused)) ros_connection_t *c, /* {{{ */ + const ros_system_resource_t *r, + __attribute__((unused)) void *user_data) +{ + cr_data_t *rd; + + if ((r == NULL) || (user_data == NULL)) + return (EINVAL); + rd = user_data; + + if (rd->collect_cpu_load) + cr_submit_gauge (rd, "gauge", "cpu_load", (gauge_t) r->cpu_load); + + if (rd->collect_memory) + { + cr_submit_gauge (rd, "memory", "used", + (gauge_t) (r->total_memory - r->free_memory)); + cr_submit_gauge (rd, "memory", "free", (gauge_t) r->free_memory); + } + + if (rd->collect_df) + { + cr_submit_gauge (rd, "df_complex", "used", + (gauge_t) (r->total_memory - r->free_memory)); + cr_submit_gauge (rd, "df_complex", "free", (gauge_t) r->free_memory); + } + + if (rd->collect_disk) + { + cr_submit_counter (rd, "counter", "secors_written", (derive_t) r->write_sect_total); + cr_submit_gauge (rd, "gauge", "bad_blocks", (gauge_t) r->bad_blocks); + } + + return (0); +} /* }}} int handle_system_resource */ +#endif + static int cr_read (user_data_t *user_data) /* {{{ */ { int status; @@ -214,6 +276,26 @@ static int cr_read (user_data_t *user_data) /* {{{ */ } } +#if ROS_VERSION >= ROS_VERSION_ENCODE(1, 1, 0) + if (rd->collect_cpu_load + || rd->collect_memory + || rd->collect_df + || rd->collect_disk) + { + status = ros_system_resource (rd->connection, handle_system_resource, + /* user data = */ rd); + if (status != 0) + { + char errbuf[128]; + ERROR ("routeros plugin: ros_system_resource failed: %s", + sstrerror (status, errbuf, sizeof (errbuf))); + ros_disconnect (rd->connection); + rd->connection = NULL; + return (-1); + } + } +#endif + return (0); } /* }}} int cr_read */ @@ -250,8 +332,6 @@ static int cr_config_router (oconfig_item_t *ci) /* {{{ */ router_data->service = NULL; router_data->username = NULL; router_data->password = NULL; - router_data->collect_interface = false; - router_data->collect_regtable = false; status = 0; for (i = 0; i < ci->children_num; i++) @@ -270,6 +350,16 @@ static int cr_config_router (oconfig_item_t *ci) /* {{{ */ cf_util_get_boolean (child, &router_data->collect_interface); else if (strcasecmp ("CollectRegistrationTable", child->key) == 0) cf_util_get_boolean (child, &router_data->collect_regtable); +#if ROS_VERSION >= ROS_VERSION_ENCODE(1, 1, 0) + else if (strcasecmp ("CollectCPULoad", child->key) == 0) + cf_util_get_boolean (child, &router_data->collect_cpu_load); + else if (strcasecmp ("CollectMemory", child->key) == 0) + cf_util_get_boolean (child, &router_data->collect_memory); + else if (strcasecmp ("CollectDF", child->key) == 0) + cf_util_get_boolean (child, &router_data->collect_df); + else if (strcasecmp ("CollectDisk", child->key) == 0) + cf_util_get_boolean (child, &router_data->collect_disk); +#endif else { WARNING ("routeros plugin: Unknown config option `%s'.", child->key); @@ -318,8 +408,8 @@ static int cr_config_router (oconfig_item_t *ci) /* {{{ */ user_data.data = router_data; user_data.free_func = (void *) cr_free_data; if (status == 0) - status = plugin_register_complex_read (read_name, cr_read, - /* interval = */ NULL, &user_data); + status = plugin_register_complex_read (/* group = */ NULL, read_name, + cr_read, /* interval = */ NULL, &user_data); if (status != 0) cr_free_data (router_data);