X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fredis.c;h=b694e09db8f84a6be6767b20cacd50d37791b074;hb=e770968a686963a3c8373cd6cd38b13964433029;hp=30bd8da34761f62bfd7448aa48db3581d858c072;hpb=d1c3baabf0c7bf65f699fb66db5b2aea92d1f5e7;p=collectd.git diff --git a/src/redis.c b/src/redis.c index 30bd8da3..b694e09d 100644 --- a/src/redis.c +++ b/src/redis.c @@ -196,14 +196,14 @@ static void redis_submit_g (char *plugin_instance, } /* }}} */ __attribute__ ((nonnull(2))) -static void redis_submit_c (char *plugin_instance, +static void redis_submit_d (char *plugin_instance, const char *type, const char *type_instance, - counter_t value) /* {{{ */ + derive_t value) /* {{{ */ { value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - values[0].counter = value; + values[0].derive = value; vl.values = values; vl.values_len = 1; @@ -288,8 +288,8 @@ static int redis_read (void) /* {{{ */ redis_submit_g (rn->name, "current_connections", "slaves", info.connected_slaves); redis_submit_g (rn->name, "memory", "used", info.used_memory); redis_submit_g (rn->name, "volatile_changes", NULL, info.changes_since_last_save); - redis_submit_c (rn->name, "total_connections", NULL, info.total_connections_received); - redis_submit_c (rn->name, "total_operations", NULL, info.total_commands_processed); + redis_submit_d (rn->name, "total_connections", NULL, info.total_connections_received); + redis_submit_d (rn->name, "total_operations", NULL, info.total_commands_processed); credis_close (rh); }