Get Anomaly Events
appd_get_anomaliesRetrieve anomaly detection events for applications. Filter by severity, lookback time, and include closed anomalies to troubleshoot performance issues.
Instructions
Retrieve anomaly detection events for a specific application or all applications. By default, returns only currently open anomalies.
Set includeAll to true to see all events including closed ones.
Args:
application (string|number, optional): App name or ID. Omit for all apps.
durationInMins (number, optional): Lookback in minutes (default: 1440 = 24h)
severities (string, optional): Comma-separated severity levels (default: 'INFO,WARN,ERROR')
includeAll (boolean, optional): If true, includes all events including closed anomalies
Returns: Array of anomaly events. When querying all apps, results are grouped by application.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeAll | No | If true, includes all events (opens, closes, upgrades, downgrades). If false (default), only shows currently open anomalies. | |
| severities | No | Comma-separated severity levels. Defaults to 'INFO,WARN,ERROR'. | |
| application | No | Application name or numeric ID. If omitted, checks all applications. | |
| durationInMins | No | Time range in minutes to look back. Defaults to 1440 (24 hours). |