How to configure parser to deal with a Unix timestamp in millisecond? #7409
Unanswered
fovgrubby128
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi team,
In Golang, we would get the time from
nanos := timeNow().UnixNano()
, and we transfer it into millisecond bymillis := float64(nanos) / float64(time.Millisecond)
. So in the output logging, the time key and value would be like{"ts":1681249953179.353,...
My question is, how could I configure parser in
Time_Format
field (Time_Key
ists
)?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions