Get cluster self-test status

GET /v1/debug/self_test/status

Get the status of the Redpanda cluster self-test.

Responses

  • 200 application/json

    Self-test status response

    Hide response attributes Show response attributes object
    • node_id integer(int64)

      node_id of the broker reporting

    • results array[object]

      Recordings of test runs from a single broker

      Result set from a single self_test run

      Hide results attributes Show results attributes object
      • info string

        Additional test labels, metadata and/or information

      • bps integer(int64)

        Bytes operated on per second

      • duration integer(int64)

        Length of time the test took to complete

      • error string

        Stringified exception if any occurred during test execution

      • max_latency integer(int64)

        Maximum recorded latency measurement

      • name string

        Name of the test run

      • p50 integer(int64)

        50th percentile latencies

      • p90 integer(int64)

        90th percentile latencies

      • p99 integer(int64)

        99th percentile latencies

      • p999 integer(int64)

        999th percentile latencies

      • rps integer(int64)

        Number of requests per second

      • test_id string

        Global test uuid identifier

      • test_type string

        Type of self test, one of either disk/network

      • timeouts integer(int64)

        Number of io timeouts observed during run

      • warning string

        Warning that arose during test execution

    • status string

      One of either idle / running / unreachable

GET /v1/debug/self_test/status
curl \
 --request GET 'http://localhost:9644/v1/debug/self_test/status'
Response examples (200)
[
  {
    "node_id": 42,
    "results": [
      {
        "info": "string",
        "bps": 42,
        "duration": 42,
        "error": "string",
        "max_latency": 42,
        "name": "string",
        "p50": 42,
        "p90": 42,
        "p99": 42,
        "p999": 42,
        "rps": 42,
        "test_id": "string",
        "test_type": "string",
        "timeouts": 42,
        "warning": "string"
      }
    ],
    "status": "string"
  }
]