You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zeek logs may have milliseconds in the timestamp like this: 1573757353.774572. When it happens, the statement ctx['@timestamp'] = (long)ctx['zeek']['notice']['ts'] * 1000; turns the value into 1573757353000.
Making the statement ctx['@timestamp'] = (long)(ctx['zeek']['notice']['ts'] * 1000) solves the issue.
Zeek logs may have milliseconds in the timestamp like this:
1573757353.774572
. When it happens, the statementctx['@timestamp'] = (long)ctx['zeek']['notice']['ts'] * 1000;
turns the value into1573757353000
.Making the statement
ctx['@timestamp'] = (long)(ctx['zeek']['notice']['ts'] * 1000)
solves the issue.@andrewkroh
The text was updated successfully, but these errors were encountered: