datadog_events_list
Retrieve Datadog events with filters for time range, query, sources, and tags. Supports auto-pagination up to 10,000 events and outputs YAML.
Instructions
List Datadog events. limit of 0 (or omitted) auto-paginates across cursor pages up to 10000; any non-zero value caps the total at that count. from / to accept relative shorthand (15m, 1h), now, RFC 3339, or Unix epoch seconds. Mirrors omni-dev datadog events list. Output is YAML.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Datadog events query (e.g. `service:api`). | |
| from | No | Start of the time range. Defaults to `1h`. | |
| limit | No | Maximum events to return. `0` means "fetch every match across pages (capped at 10000)"; any non-zero value caps the total at that count, paginating underneath as needed. Defaults to 100. | |
| sources | No | Comma-separated list of source names. | |
| tags | No | Comma-separated list of `key:value` tags. | |
| to | No | End of the time range. Defaults to `now`. |