Hi,
I have an issue with logstash.
all logs are prefixed with a wrong timestamp: the year is 2000.
The rest of the date is good.
here is my output section from logstash.conf:
output {
elasticsearch {
template_overwrite => "true"
action => "index"
hosts => "localhost"
index => "logstash-%{+YYYYMMddHH00}"
document_type => "event"
}
stdout {}
}
and here is a sample in /var/log/logstash/logstash.stdout
2000-03-20T13:22:20.000Z x.x.x.x true ;bla bla;bla bla bla;bla bla
2000-03-20T13:22:20.000Z x.x.x.x true ;bla bla;bla bla bla;bla bla
it worked perfectly before.
Many thanks for your help.
Libfy