Download the given instance's heap dump
Returns the given instance's heap dump for download.
Path parameters
-
Identifier for the Deployment.
-
The kind of resource (one of elasticsearch, kibana or apm).
-
User-specified RefId for the Resource (or '_main' if there is only one).
-
The instance identifier
Responses
-
The given instance's heap dump
-
- The Deployment specified by {deployment_id} cannot be found. (code:
deployments.deployment_not_found
) - The Resource specified by {ref_id} cannot be found. (code:
deployments.deployment_resource_not_found
) - The specified instance cannot be found. (code:
deployments.instance_not_found_error
) - The specified instance does not have a heap dump available to download. (code:
heap_dumps.heap_dump_not_found
)
- The Deployment specified by {deployment_id} cannot be found. (code:
GET /deployments/{deployment_id}/{resource_kind}/{ref_id}/instances/{instance_id}/heap_dump/_download
curl \
-X GET https://{{hostname}}/api/v1/deployments/{deployment_id}/{resource_kind}/{ref_id}/instances/{instance_id}/heap_dump/_download
Response examples (200)
string
Response examples (404)
# Headers
x-cloud-error-codes: deployments.deployment_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}