Get details about heap dumps for a Deployment

GET /deployments/{deployment_id}/heap_dumps

Gets details about existing heap dumps and in progress heap dump captures across all instances belonging to the deployment.

Path parameters

Responses

  • The heap dump details for all instances belonging to the deployment

    Hide response attributes Show response attributes object
    • elasticsearch array[object] Required

      The list of Elasticsearch resources and their heap dumps

      Hide elasticsearch attributes Show elasticsearch attributes object
      • ref_id string Required

        The locally-unique user-specified id of the resource that the heap dump was captured from

      • id string Required

        The randomly-generated id of a Resource

      • heap_dumps array[object] Required

        The heap dumps belonging to this resource

        Hide heap_dumps attributes Show heap_dumps attributes object
        • instance_id string Required

          The Elastic Cloud name/id of the instance (container)

        • size integer(int64)

          The size in bytes of the heap dump

        • type string Required

          The type of heap dump

        • status string Required

          The status of the heap dump

        • error string

          An error message if the heap dump failed

        • captured string Required

          The time at which the heap dump was captured

  • The deployment specified by {deployment_id} cannot be found. (code: deployments.deployment_not_found)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is deployments.deployment_not_found.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

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"
      ]
    }
  ]
}