Kibana not recognizing logstash date filter

I have dates formatted as such:

2013-05-02 08:02:22.622+0000

And my date filter is the following:

date {
match => ["logdate", "YYYY-MM-DD HH:mm:ss.SSSZZZZ"]
target => "logdate"
}

However, when I create indices in Kibana, the only time filter options that show up are "@timestamp" and not using any timestamp. Logdate does not show up.

Try

match => ["logdate", "YYYY-MM-dd HH:mm:ss.SSSZ"]

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.