I have written follow grok pattern in logstash
filter{
grok{
match => { "message" => '%{IPORHOST:clientip} %{HTTPDUSER:ident} %{USER:auth} \[%{HTTPDATE:logtimestamp}\] "(?:%{WORD:verb} %{NOTSPACE:request}(?: HTTP/%{NUMBER:httpversion})?|%{DATA:rawrequest})" %{NUMBER:response} (?:%{NUMBER:bytes:int}|-)' }
}
date{ match => ["logtimestamp","DD/MMM/YYYY:HH:MM:SS ZZ","ISO8601"] target => "Time" }
}
As you can see I don't want to use default timestamp abut want to use Time as field name and use it as timestamp actually this field has created but it does not contain any data . what is the issue ?