log_logstash: fix timestamp field to respect ISO 8601 format
authorMarc Fournier <marc.fournier@camptocamp.com>
Fri, 11 Sep 2015 21:59:10 +0000 (23:59 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Fri, 11 Sep 2015 21:59:10 +0000 (23:59 +0200)
Fixes #1132

src/log_logstash.c

index 2883e6c..2d5f620 100644 (file)
@@ -147,7 +147,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", &timestamp_tm);
+                 "%Y-%m-%dT%H:%M:%SZ", &timestamp_tm);
        timestamp_str[sizeof (timestamp_str) - 1] = '\0';
 
        if (yajl_gen_string(g, (u_char *)timestamp_str,