Get details about heap dumps for a Deployment
Gets details about existing heap dumps and in progress heap dump captures across all instances belonging to the deployment.
Path parameters
-
Identifier for the Deployment.
GET /deployments/{deployment_id}/heap_dumps
curl \
-X GET https://{{hostname}}/api/v1/deployments/{deployment_id}/heap_dumps
Response examples (200)
{
"elasticsearch": [
{
"ref_id": "string",
"id": "string",
"heap_dumps": [
{
"instance_id": "string",
"size": 42,
"type": "string",
"status": "string",
"error": "string",
"captured": "string"
}
]
}
],
"enterprise_search": [
{
"ref_id": "string",
"id": "string",
"heap_dumps": [
{
"instance_id": "string",
"size": 42,
"type": "string",
"status": "string",
"error": "string",
"captured": "string"
}
]
}
]
}
Response examples (404)
# Headers
x-cloud-error-codes: deployments.deployment_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}