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
Whilst using the SIEM app, I noticed that the Suricata flow duration was not correct. Instead of calculating flow.end - flow.start after discussing with @adriansr , it turns out that we set the following:
event.end = @timestamp , and then evt.duration=evt.end - evt.start
This does not provide a correct result for event duration, as we can see from an example raw suricate event above.
The text was updated successfully, but these errors were encountered:
Whilst using the SIEM app, I noticed that the Suricata flow duration was not correct. Instead of calculating
flow.end
-flow.start
after discussing with @adriansr , it turns out that we set the following:event.end = @timestamp
, and thenevt.duration=evt.end - evt.start
This does not provide a correct result for event duration, as we can see from an example raw suricate event above.
The text was updated successfully, but these errors were encountered: