Open jsvd opened 8 years ago
from @vdun at https://github.com/elastic/logstash/issues/6264
Let the date filter supports grok patterns instead of joda.time.format.DateTimeFormat. e.g. for apache access log, instead of using: date {match => [ "timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ]} -> date {match => [ "timestamp" , "%{HTTPDATE}" ]}
date
joda.time.format.DateTimeFormat
date {match => [ "timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ]}
date {match => [ "timestamp" , "%{HTTPDATE}" ]}
from @vdun at https://github.com/elastic/logstash/issues/6264
Let the
date
filter supports grok patterns instead ofjoda.time.format.DateTimeFormat
. e.g. for apache access log, instead of using:date {match => [ "timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ]}
->date {match => [ "timestamp" , "%{HTTPDATE}" ]}