# rpk cluster maintenance status

> For the complete documentation index, see [llms.txt](https://docs.redpanda.com/llms.txt). Component-specific: [streaming-full.txt](https://docs.redpanda.com/streaming-full.txt)

---
title: rpk cluster maintenance status
latest-redpanda-tag: v26.1.14
latest-console-tag: v3.9.0
latest-operator-version: v26.2.1
# EOL = End-of-Life (support lifecycle status)
page-is-nearing-eol: "false"
page-is-past-eol: "false"
page-eol-date: March 31, 2027
latest-connect-version: 4.104.0
docname: rpk/rpk-cluster/rpk-cluster-maintenance-status
page-component-name: streaming
page-version: "26.1"
page-component-version: "26.1"
page-component-title: Streaming
page-relative-src-path: rpk/rpk-cluster/rpk-cluster-maintenance-status.adoc
page-edit-url: https://github.com/redpanda-data/docs/edit/v/26.1/modules/reference/pages/rpk/rpk-cluster/rpk-cluster-maintenance-status.adoc
description: Report maintenance status. This command reports maintenance status for each broker in the cluster.
page-git-created-date: "2023-05-17"
page-git-modified-date: "2026-07-17"
support-status: supported
---

<!-- Source: https://docs.redpanda.com/streaming/26.1/reference/rpk/rpk-cluster/rpk-cluster-maintenance-status.md -->

Report maintenance status.

This command reports maintenance status for each broker in the cluster. The output is presented as a table with each row representing a broker in the cluster. The output can be used to monitor the progress of node draining.

For example:

NODE-ID  ENABLED  FINISHED  ERRORS  PARTITIONS  ELIGIBLE  TRANSFERRING  FAILED
1        false    false     false   0           0         0             0

| Field | Description |
| --- | --- |
| NODE-ID | The node ID. |
| ENABLED | true if the broker is currently in maintenance mode. |
| FINISHED | Leadership draining has completed. |
| ERRORS | Errors have been encountered while draining. |
| PARTITIONS | Number of partitions whose leadership has moved. |
| ELIGIBLE | Number of partitions with leadership eligible to move. |
| TRANSFERRING | Current active number of leadership transfers. |
| FAILED | Number of failed leadership transfers. |

> 📝 **NOTE**
>
> -   When errors are present, further information is available in the logs for the corresponding broker.
>
> -   Only partitions with more than one replica are eligible for leadership transfer.

## [](#usage)Usage

```bash
rpk cluster maintenance status [flags]
```

## [](#global-flags)Global flags

| Value | Type | Description |
| --- | --- | --- |
| --config | string | Redpanda or rpk config file; default search paths are ~/.config/rpk/rpk.yaml, $PWD/redpanda.yaml, and /etc/redpanda/redpanda.yaml. |
| -X, --config-opt | stringArray | Override rpk configuration settings; -X help for detail or -X list for terser detail. |
| --ignore-profile | bool | Ignore rpk.yaml and redpanda.yaml; use default settings. |
| --profile | string | rpk profile to use. |
| -v, --verbose | bool | Enable verbose logging. |