Get local partitions

GET /v1/partitions/local_summary

Get a summary of the partition(s) replicated on the requesting broker.

Responses

  • 200 application/json

    Local partitions response

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

      Number of partitions with a replica on this broker

    • leaderless integer(int64)

      Number of partitions with a replica on this broker that report no known raft leader

    • under_replicated integer(int64)

      Number of partitions with leadership on this broker, reporting one or more under-replicated followers

GET /v1/partitions/local_summary
curl \
 --request GET 'http://localhost:9644/v1/partitions/local_summary'
Response examples (200)
{
  "count": 42,
  "leaderless": 42,
  "under_replicated": 42
}