/InsightEvents
http://xray.{region}.amazonaws.com/InsightEventsX-Ray reevaluates insights periodically until they're resolved, and records each intermediate state as an event. You can review an insight's events in the Impact Timeline on the Inspect page in the X-Ray console.
Query Params
Pagination limit
Pagination token
Body Params
The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.
Specify the pagination token returned by a previous request to retrieve the next page of events.
Used to retrieve at most the specified value of events.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request POST \2 --url 'http://xray.{region}.amazonaws.com/InsightEvents' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}