How to parse this (1524555283.778710) timestamp?

Hello Everyone,

I have one timestamp like 1524555283.778710.

How to parse this timestamp i had tried with following command,

date {
  match => [ "ts", "UNIX" ]
}

and this one also,
if i do this one then its giving date parse failure.

date {
  match => [ "ts", "UNIX_MS" ]
  target => "new_ts"
}

But still did not parse this timestamp please help me to resolve this.

Thanks & Regards,
Krunal.

Hello Guys,

Sorry for interrupting now its parsing fine i get the solution for this que.

Please help others by sharing the solution you found.

Hi @magnusbaeck,

Yes Sure i just add new line target => "newts" like following before i did not add but after add this line it's working fine and parse that timestamp also.

date {
match => [ "ts", "UNIX" ]
target => "newts"
}

Thanks & Regards,
Krunal.

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