projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
649eff4
)
log_logstash: fix timestamp field to respect ISO 8601 format
author
Marc Fournier
<marc.fournier@camptocamp.com>
Fri, 11 Sep 2015 21:59:10 +0000
(23:59 +0200)
committer
Marc Fournier
<marc.fournier@camptocamp.com>
Fri, 11 Sep 2015 21:59:10 +0000
(23:59 +0200)
Fixes #1132
src/log_logstash.c
patch
|
blob
|
history
diff --git
a/src/log_logstash.c
b/src/log_logstash.c
index
2883e6c
..
2d5f620
100644
(file)
--- a/
src/log_logstash.c
+++ b/
src/log_logstash.c
@@
-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", ×tamp_tm);
+ "%Y-%m-%d
T
%H:%M:%SZ", ×tamp_tm);
timestamp_str[sizeof (timestamp_str) - 1] = '\0';
if (yajl_gen_string(g, (u_char *)timestamp_str,