I have a CSV file with some value times that I would like to exclude from my searchs/reports.
That CSV file contains:
Index,StartTime,EndTime,
Index01,07/02/2018 17:39,07/02/2018 17:42,
Index01,07/02/2018 17:37,07/02/2018 17:38,
My search:
index="index01" ( HTTP_statuscode>=500)| stats count(eval(HTTP_statuscode >= 500)) as errors by index
When I've search from all the results/issues of that day, I want exclude all the results in that period time.
What will be the best way to do this?
... View more