Back to rankings

redpanda-data/console

TypeScriptredpanda.com

Redpanda Console is a developer-friendly UI for managing your Kafka/Redpanda workloads. Console gives you a simple, interactive approach for gaining visibility into your topics, masking data, managing consumer groups, and exploring real-time data with time-travel debugging.

apache-kafkadataopsreacttypescriptkafka-uikafka-guiweb-uigokafka
Star Growth
Stars
4.3k
Forks
427
Weekly Growth
Issues
131
2k4k
Sep 2019Dec 2021Apr 2024Jul 2026
Artifactsnpmnpm install console
README

Redpanda Console – A UI for Data Streaming

GitHub release (latest SemVer) Docker Repository

Redpanda Console (previously known as Kowl) is a web application that helps you manage and debug your Kafka/Redpanda workloads effortlessly.

https://user-images.githubusercontent.com/23424570/220130537-7b0b8596-0a06-4132-90a5-1be3c169e4f4.mp4

Features

  • Message viewer: Explore your topics' messages in our message viewer through ad-hoc queries and dynamic filters. Find any message you want using JavaScript functions to filter messages. Supported encodings are: JSON, Avro, Protobuf, CBOR, XML, MessagePack, Text and Binary (hex view). The used encoding (except Protobuf and CBOR) is recognized automatically.
  • Consumer groups: List all your active consumer groups along with their active group offsets, edit group offsets (by group, topic or partition) or delete a consumer group.
  • Topic overview: Browse through the list of your Kafka topics, check their configuration, space usage, list all consumers who consume a single topic or watch partition details (such as low and high water marks, message count, ...), embed topic documentation from a git repository and more.
  • Cluster overview: List available brokers, their space usage, rack id, health, configuration and other information to get a high level overview of your brokers in your cluster.
  • Security: Create, list or edit Kafka ACLs and SASL-SCRAM users.
  • Schema Registry: List and manage all aspects of your Avro, Protobuf or JSON schemas within your schema registry.
  • Kafka connect: Manage connectors from multiple connect clusters, patch configs, view their current state or restart tasks.
  • Redpanda Transforms: Manage and monitor data transforms deployed in your Redpanda cluster.

Code Quality

The frontend uses react-doctor to statically analyze React components for performance anti-patterns. Run bun run doctor in the frontend/ directory for a local scan. React Doctor also runs automatically in CI on every push and pull request.

Getting Started

Prerequisites

  • Redpanda or any Kafka deployment (v1.0.0+) compatible
  • A web browser to access the Console, which can be deployed using Docker builds or as a single binary across all platforms (amd64 / arm64)

Installing

We offer pre built docker images for RP Console, binary builds and a Helm chart to make the installation as comfortable as possible for you. Please take a look at our dedicated Installation documentation.

Quick Start

Do you just want to test RP Console against one of your Kafka clusters without spending too much time on the test setup? Here are some docker commands that allow you to run it locally against an existing Redpanda or Kafka cluster:

Redpanda/Kafka is running locally

Since Console runs in its own container (which has its own network scope), we have to use host.docker.internal as a bootstrap server. That DNS resolves to the host system's ip address. However since the brokers send a list of all brokers' DNS when a client has connected, you have to make sure your advertised listener is connected accordingly, e.g.: PLAINTEXT://host.docker.internal:9092

docker run -p 8080:8080 -e KAFKA_BROKERS=host.docker.internal:9092 docker.redpanda.com/redpandadata/console:latest

Docker supports the --network=host option only on Linux. So Linux users use localhost:9092 as an advertised listener and use the host network namespace instead. Console will then be run as it would be executed on the host machine.

docker run --network=host -p 8080:8080 -e KAFKA_BROKERS=localhost:9092 docker.redpanda.com/redpandadata/console:latest

Kafka is running remotely

Protected via SASL_SSL and trusted certificates (e.g. Confluent Cloud):

docker run -p 8080:8080 -e KAFKA_BROKERS=pkc-4r000.europe-west1.gcp.confluent.cloud:9092 -e KAFKA_TLS_ENABLED=true -e KAFKA_SASL_ENABLED=true -e KAFKA_SASL_USERNAME=xxx -e KAFKA_SASL_PASSWORD=xxx docker.redpanda.com/redpandadata/console:latest

I don't have a running Kafka cluster to test against

We maintain a docker-compose file that launches Redpanda and Console: /docs/local.

Community

Slack is the main way the community interacts with one another in real time :)

GitHub Issues can be used for issues, questions and feature requests.

Code of conduct code of conduct for the community

Contributing docs

Related repositories
debezium/debezium

Change data capture for a variety of databases. Please log issues at https://github.com/debezium/dbz/issues.

JavaMavenApache License 2.0change-data-capturekafka-connect
debezium.io
12.9k3k
provectus/kafka-ui

Open-Source Web UI for Apache Kafka Management

JavaMavenApache License 2.0kafka-uikafka-brokers
12.2k1.4k
kafbat/kafka-ui

Open-Source Web UI for managing Apache Kafka clusters

TypeScriptnpmApache License 2.0apache-kafkabig-data
kafbat.io
2.5k355
karafka/karafka

Ruby and Rails efficient Kafka processing framework

RubyRubyGemsOtherkarafka-frameworkkafka
karafka.io
2.3k189
nubskr/walrus

🦭 Distributed log streaming engine built from first principles

Rustcrates.ioMIT Licensedatabaserust
nubskr.com/2025/10/20/walrus_v0.2.0/
1.9k72
tansu-io/tansu

Apache Kafka® compatible broker with S3, PostgreSQL, SQLite, Apache Iceberg and Delta Lake

Rustcrates.ioApache License 2.0built-with-rustpostgres
docs.tansu.io
1.8k73
OryxProject/oryx

Oryx 2: Lambda architecture on Apache Spark, Apache Kafka for real-time large scale machine learning

JavaMavenApache License 2.0lambda-architectureoryx
oryx.io
1.8k401
confluentinc/cp-all-in-one

docker-compose.yml files for cp-all-in-one , cp-all-in-one-community, cp-all-in-one-cloud, Apache Kafka Confluent Platform

PythonPyPIquickstartapache-kafka
1.2k715
Parsely/pykafka

Apache Kafka client for Python; high-level & low-level consumer/producer, with great performance.

PythonPyPIApache License 2.0kafkapython
pykafka.readthedocs.org
1.1k222
deviceinsight/kafkactl

Command Line Tool for managing Apache Kafka

GoGo ModulesApache License 2.0apache-kafkaavro
deviceinsight.github.io/kafkactl/
1.1k103
confluentinc/librdkafka

The Apache Kafka C/C++ library

COtherkafkakafka-consumer
1k3.2k
miguno/kafka-storm-starter

[PROJECT IS NO LONGER MAINTAINED] Code examples that show to integrate Apache Kafka 0.8+ with Apache Storm 0.9+ and Apache Spark Streaming 1.1+, while using Apache Avro as the data serialization format.

Scalaapache-kafkakafka
michael-noll.com/blog/2014/05/27/kafka-storm-integration-example-tutorial/
724330