From c1bd922e7cbb46483ae6d201eb510ca6ad21fe6c Mon Sep 17 00:00:00 2001 From: Kevin Bowling Date: Thu, 14 Aug 2014 02:21:17 -0700 Subject: [PATCH 1/1] [METRICS-383] Review fixes for octo --- src/write_tsdb.c | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/write_tsdb.c b/src/write_tsdb.c index 9dff2904..2eca77e1 100644 --- a/src/write_tsdb.c +++ b/src/write_tsdb.c @@ -406,7 +406,6 @@ static int wt_send_message (const char* key, const char* value, char *tags = ""; char message[1024]; char *host_tags = cb->host_tags ? cb->host_tags : ""; - const char *message_fmt; const char *meta_tsdb = "tsdb_tags"; /* skip if value is NaN */ @@ -427,16 +426,15 @@ static int wt_send_message (const char* key, const char* value, } } - message_fmt = "put %s %u %s fqdn=%s %s %s\r\n"; - message_len = ssnprintf (message, sizeof(message), - message_fmt, - key, - (unsigned int)CDTIME_T_TO_TIME_T( - time), - value, - host, - tags, - host_tags); + message_len = ssnprintf (message, + sizeof(message), + "put %s %.0f %s fqdn=%s %s %s\r\n", + key, + CDTIME_T_TO_DOUBLE(time), + value, + host, + tags, + host_tags); sfree(temp); -- 2.11.0