list_open_incidents
Retrieve and filter all open incidents in your New Relic account by account ID and priority to manage and monitor issues effectively.
Instructions
List all open incidents in your New Relic account
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| priority | No | Filter by incident priority | |
| target_account_id | No | Optional New Relic account ID |
Input Schema (JSON Schema)
{
"properties": {
"priority": {
"description": "Filter by incident priority",
"enum": [
"CRITICAL",
"HIGH",
"MEDIUM",
"LOW"
],
"type": "string"
},
"target_account_id": {
"description": "Optional New Relic account ID",
"type": "string"
}
},
"type": "object"
}