Project

General

Profile

Feature #2153

Add executive summary

Added by Luke Murphey over 6 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
High
Assignee:
Target version:
Start date:
11/14/2017
Due date:
% Done:

100%


Description

Add executive summary that shows sites that are currently down, up and with warnings.

Could use a search like this:

sourcetype="web_ping" `website_monitoring_search_index`
| fillnull response_code value="Connection failed" 
| eval response_code=if(response_code="", "Connection failed", response_code)
| eval response_code=if(timed_out == "True", "Connection timed out", response_code)
| fillnull has_expected_string value="" 
| stats avg(total_time) as avg_response_time max(total_time) as max_response_time latest(response_code) as response_code latest(has_expected_string) as has_expected_string latest(_time) as last_checked latest(total_time) as response_time by source
| eval response_time=if(has_expected_string=="false", 100000, response_time)
| eval warning_threshold = 1000
| eval status=case(response_time > `response_time_threshold`, "ERROR", response_time > warning_threshold, "WARNING", true(), "OK")
| stats count(source) by status

Associated revisions

Revision 396 (diff)
Added by lukemurphey over 6 years ago

Adding executive summary dashboard

Reference #2153

History

#1 Updated by Luke Murphey over 6 years ago

  • Subject changed from Add executize summary to Add executive summary

#4 Updated by Luke Murphey over 6 years ago

  • Priority changed from Normal to Low

#5 Updated by Luke Murphey over 6 years ago

  • Priority changed from Low to High

#6 Updated by Luke Murphey over 6 years ago

  • % Done changed from 0 to 80

#7 Updated by Luke Murphey over 6 years ago

  • Status changed from New to Closed
  • % Done changed from 80 to 100

Also available in: Atom PDF