listIncidents
Fetch and filter incidents from AppSignal monitoring by state (open, closed, ignored) and limit results for efficient incident analysis and tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
state | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 25,
"exclusiveMinimum": 0,
"type": "integer"
},
"state": {
"enum": [
"open",
"closed",
"ignored"
],
"type": "string"
}
},
"type": "object"
}