They are the 'standard' dashboards offered within the Website Monitoring app - I would like to filter all events when the servers undergo their nightly restarts 0100 - 0120 and 0400 to 0420
sourcetype="web_ping" title="" filter_inoperable | stats count as count *( lists the failures over 24 hrs)**
sourcetype="web_ping" title="" | stats max(total_time) as response_time *( lists max response time )**
sourcetype="web_ping" title="" | fillnull value=1000 response_code | eval
success=case(response_code>=400, 0, timed_out == "True", 0) | fillnull value=1 success | chart count as total, sum(success) as successes | eval availability=round(100(successes/total),2) | fields availability ( lists availability )
Any help would be greatly appreciated
... View more