Capture a new thread dump for the given instance
Captures a new thread dump for the given instance and returns the thread dump contents.
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 thread dump contents
-
- 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 Deployment specified by {deployment_id} cannot be found. (code:
POST /deployments/{deployment_id}/{resource_kind}/{ref_id}/instances/{instance_id}/thread_dump/_capture
curl \
-X POST https://{{hostname}}/api/v1/deployments/{deployment_id}/{resource_kind}/{ref_id}/instances/{instance_id}/thread_dump/_capture
Response examples (200)
string
Response examples (404)
# Headers
x-cloud-error-codes: deployments.deployment_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}