X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flog_logstash.c;h=45aa86d174010339c08845bca72de6dbdeb3bad6;hb=edd9af8a874ebc9f2a7f02846807229a648917db;hp=61e7f4848e3a4b6dd24f87cf5ac3fb630416e7fd;hpb=eea01a8f212634414a21462ba79dc058dc5fb304;p=collectd.git diff --git a/src/log_logstash.c b/src/log_logstash.c index 61e7f484..45aa86d1 100644 --- a/src/log_logstash.c +++ b/src/log_logstash.c @@ -31,7 +31,6 @@ #include "plugin.h" #include -#include #include #include #if HAVE_YAJL_YAJL_VERSION_H @@ -147,7 +146,7 @@ static void log_logstash_print (yajl_gen g, int severity, * format time as a UTC ISO 8601 compliant string */ strftime (timestamp_str, sizeof (timestamp_str), - "%Y-%m-%d %H:%M:%SZ", ×tamp_tm); + "%Y-%m-%dT%H:%M:%SZ", ×tamp_tm); timestamp_str[sizeof (timestamp_str) - 1] = '\0'; if (yajl_gen_string(g, (u_char *)timestamp_str, @@ -208,7 +207,7 @@ static void log_logstash_log (int severity, const char *msg, { yajl_gen g; #if !defined(HAVE_YAJL_V2) - yajl_gen_config conf; + yajl_gen_config conf = {}; conf.beautify = 0; #endif @@ -252,7 +251,7 @@ static int log_logstash_notification (const notification_t *n, #if HAVE_YAJL_V2 g = yajl_gen_alloc(NULL); #else - yajl_gen_config conf; + yajl_gen_config conf = {}; conf.beautify = 0; g = yajl_gen_alloc(&conf, NULL);