i have log beginning with time and time format is like 
09:16:07.080_M_I_ [10:06] SO(000000000463f2a8 1629 2)
i tried grok pattern
grok {
match => {"message" => "%{WORD:Timestamp}%{SPACE}%{GREEDYDATA:Logmessage}"}
}
}
which did not work, i also tried matching the timestamp with matchings like HH:MM:SS.xxx_Z_Z_Z?
can any one help me on this?