Date parsing can't update timestamp

the date parsing is successful,but the @timestamp not updated
This is my logstash

input {
  stdin { codec => json}
  beats {
     port => 5043
   }
}
filter {
      grok {
           patterns_dir => ["/etc/logstash/patterns/"]
           #match => { "log"=> ["%{DOCKER_TIME:drop_time} %{GREEDYMULTILINE:msg}","\[%{DATA:server}\] %{IPORHOST:ip} - - \[%{HTTPDATE:drop_time}\] %{GREEDYMULTILINE:msg}","\[%{TEST:Ttime}\,%{DATA:drop_data}: %{DATA:level}\] %{GREEDYMULTILINE:msg}"]}
           match => { "log" => ["\[%{TEST:Ttime}\,%{DATA:drop_data}: %{DATA:level}\] %{GREEDYMULTILINE:msg}"]}
           pattern_definitions => { "GREEDYMULTILINE" => "(.|\n)*" }
           remove_field => ["log","server","drop_data"]
           }
      date {
      match => [ "Ttime", ISO8601,"MMM  d HH:mm:ss", "MMM dd HH:mm:ss","yyyy-mm-dd HH:mm:ss","dd/MMM/yyy:HH:mm:ss" ]
      target => "@timestamp"
      #remove_field => "drop_time"
      locale => "en"
      timezone => "Asia/Shanghai"
      }

}

output {
  stdout { codec => rubydebug }

My input is

{"log":"[2017-07-28 10:16:53,636: INFO/MainProcess] Received task: utils.tasks.corporation_creamcone_events_notification[f11aa3af-4396-4490-be57-d6910d2c5aa1]  \n","stream":"stderr","time":"2017-07-28T02:16:53.636997028Z"}

the logstash output as following

{
           "msg" => "Received task: utils.tasks.corporation_creamcone_events_notification[f11aa3af-4396-4490-be57-d6910d2c5aa1]  \n",
    "@timestamp" => 2017-01-28T02:16:53.000Z,
        "stream" => "stderr",
         "level" => "INFO/MainProcess",
         "Ttime" => "2017-07-28 10:16:53",
      "@version" => "1",
          "host" => "vm1",
          "time" => "2017-07-28T02:16:53.636997028Z"
}

The TEST pattern as follows
TEST \d{4}-\d{2}-\d{2} %{TIME}

The @timestamp not update!

I think you have another date filter in your configuration that incorrectly uses "DD" instead of "dd", because "DD" means "day of the year", and the 28th day of the year is 2017-01-28.

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