Please help me to get the time format for the below string in props.conf. I am confused with the last three patterns (533+00:00)
2023-12-05T04:21:21,533+00:00
Thanks in advance.
You can try the following TIME_FORMAT value to parse the timestamp,
TIME_FORMAT = %Y-%m-%dT%H:%M:%S,%3N%z
You can try the following TIME_FORMAT value to parse the timestamp,
TIME_FORMAT = %Y-%m-%dT%H:%M:%S,%3N%z
00:00 is an offset from UTC. The %z value should parse this in -/+HHMM format.
Hi @uagraw01
it seems ,533 is milliseconds
2023-12-05T04:21:21,533+00:00
%Y-%m-%dT%H:%S,%3Q+00:00
Thanks for the answer .
By the way have you missed %M ?
should be like this: %Y-%m-%dT%H:%M:%S,%3Q+00:00