Hi
Is there a search command that will ignore the most recent X number of events for each day whilst using a Timechart command?
Thanks
Hi @jboustead ,
Before you run the timechart, add this:
| streamstats count as remove_trigger by date_mday reset_on_change=true
| where remove_trigger>3This would remove the 3 latest/most recent events per day.
Make sure it works if the month changes in the events (and you have 2 different days with "1" as date_mday for example), because I am not sure. You would have to add the month to the streamstats maybe.
Hope it helps.
BR
Ralph
Hi @jboustead ,
Before you run the timechart, add this:
| streamstats count as remove_trigger by date_mday reset_on_change=true
| where remove_trigger>3This would remove the 3 latest/most recent events per day.
Make sure it works if the month changes in the events (and you have 2 different days with "1" as date_mday for example), because I am not sure. You would have to add the month to the streamstats maybe.
Hope it helps.
BR
Ralph