get-events
Search and retrieve Datadog events within a defined time range to analyze deployments, alerts, and system activities. Helps correlate events with system behaviors for monitoring insights.
Instructions
Search for events in Datadog within a specified time range. Events include deployments, alerts, comments, and other activities. Useful for correlating system behaviors with specific events.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | ||
excludeAggregation | No | ||
limit | No | ||
priority | No | ||
sources | No | ||
start | Yes | ||
tags | No | ||
unaggregated | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"end": {
"type": "number"
},
"excludeAggregation": {
"type": "boolean"
},
"limit": {
"default": 100,
"type": "number"
},
"priority": {
"enum": [
"normal",
"low"
],
"type": "string"
},
"sources": {
"type": "string"
},
"start": {
"type": "number"
},
"tags": {
"type": "string"
},
"unaggregated": {
"type": "boolean"
}
},
"required": [
"start",
"end"
],
"type": "object"
}