getSystemSummary
A Graze API GET request that returns a summary of current alerts and Situations in Moogsoft Onprem.
Back to Graze API EndPoint Reference.
Request arguments
Endpoint getSystemSummary
takes the following request argument:
Endpoint getSystemSummary
takes no other arguments because this endpoint returns data on all alerts and Situations.
Response
Endpoint getSystemSummary
returns the following response:
Successful requests return a JSON object system_summary
, containing the following statistics:
Name | Type | Description |
---|---|---|
| Number | Total number of events in Moogsoft Onprem. |
| Number | Number of open Situations in Moogsoft Onprem. |
| Number | Number of open Situations that are trending up. |
| Number | Number of open Situations that are trending down. |
| Number | Average number of events per Situation. |
| Number | Average number of events per Situation. |
| Number | Number of services in Moogsoft Onprem. |
| Number | Number of unassigned Situations. |
Examples
The following examples demonstrate typical use of endpoint getSystemSummary
:
Request example
Example cURL request to return a summary of alerts and Situations in Moogsoft Onprem:
curl -G -u graze:graze -k -v "https://localhost/graze/v1/getSystemSummary"
Response example
Example response returning a summary of alerts and Situations in Moogsoft Onprem:
{ "system_summary": { "total_events":61676, "open_sitns":571, "avg_events_per_sitn":305, "open_sitns_up":565, "open_sitns_down":2, "avg_alerts_per_sitn":16, "open_sigs_unassigned":310, "timestamp":1499425056 } }