Get status of debug bundle collection

GET /v1/debug/bundle

Get the status of a debug bundle collection process.

Responses

  • 200 application/json

    Successfully retrieved the status of the debug bundle collection.

    Hide response attributes Show response attributes object
    • job_id string

      UUID of the current debug bundle job.

    • status string

      Status of the debug bundle process.

      Values are running, success, or error.

    • created string(int64)

      Timestamp of when the debug bundle process started.

    • filename string

      The name of the output file if the process succeeded.

    • stdout array[string]

      Output from the stdout stream of the process.

    • stderr array[string]

      Output from the stderr stream of the process.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

  • 403 application/json

    Forbidden

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

  • 409 application/json

    Conflict

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

GET /v1/debug/bundle
curl \
 --request GET 'http://localhost:9644/v1/debug/bundle'
Response examples (200)
{
  "job_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "running",
  "created": "string",
  "filename": "string",
  "stdout": [
    "string"
  ],
  "stderr": [
    "string"
  ]
}
Response examples (401)
{
  "code": 42,
  "message": "string"
}
Response examples (403)
{
  "code": 42,
  "message": "string"
}
Response examples (409)
{
  "code": 42,
  "message": "string"
}