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
It's often necessary to track the lag/delay between @timestamp and event.ingested. When this is done , it's stored in milliseconds . I have been using the event.age field as it seems appropriate, and it could be defined as : "Difference in seconds between ingested time and source event time" : float
This value is often calculated using the Logstash age filter or simply Time.now.to_f - event.timestamp.to_f
The text was updated successfully, but these errors were encountered:
It's often necessary to track the lag/delay between
@timestamp
andevent.ingested
. When this is done , it's stored inmilliseconds
. I have been using theevent.age
field as it seems appropriate, and it could be defined as : "Difference in seconds between ingested time and source event time" :float
This value is often calculated using the Logstash age filter or simply
Time.now.to_f - event.timestamp.to_f
The text was updated successfully, but these errors were encountered: