getPrcLabels
A MoogDb v2 method that returns Probable Root Cause (PRC) information for all alerts or specified alerts within a Situation.
Back to MoogDb V2 API Method Reference.
Request arguments
Method getPrcLabels
takes the following request arguments:
Name | Type | Required | Description |
---|---|---|---|
| Number | Yes | Situation ID. |
| JSON Array | No | List of alert IDs. |
Response
Method getPrcLabels
returns the following response:
Type | Description |
---|---|
Native Object | A JSON object containing the probable root cause information for the alerts in the specified Situation. |
Examples
The following examples demonstrate typical use of method getPrcLabels
:
Request example
Example request to return the PRC labels for alerts 1, 2, 3, and 4 in Situation 157:
var alertIds = [1,2,3,4]; var prcLabels = moogdb.getPrcLabels(157, alertIds);
Response example
Example response returning the PRC labels for alerts 1, 2, 3, and 4 in the Situation:
{ "non_causal": [2,3], "unlabelled": [4], "causal": [1] }