LogoLogo
WarpStream.comSlackDiscordContact UsCreate Account
  • Overview
    • Introduction
    • Architecture
      • Service Discovery
      • Write Path
      • Read Path
      • Life of a Request (Simplified)
    • Change Log
  • Getting Started
    • Install the WarpStream Agent / CLI
    • Run the Demo
    • "Hello World" for Apache Kafka
  • BYOC
    • Run the Agents Locally
    • Deploy the Agents
      • Object Storage Configuration
      • Kubernetes Known Issues
      • Rolling Restarts and Upgrades
    • Infrastructure as Code
      • Terraform Provider
      • Helm charts
      • Terraform Modules
    • Monitoring
      • Pre-made Datadog Dashboard
      • Pre-made Grafana Dashboard
      • Important Metrics and Logs
      • Recommended List of Alerts
      • Monitoring Consumer Groups
      • Hosted Prometheus Endpoint
    • Client Configuration
      • Tuning for Performance
      • Configure Clients to Eliminate AZ Networking Costs
        • Force Interzone Load Balancing
      • Configuring Kafka Client ID Features
      • Known Issues
    • Authentication
      • SASL Authentication
      • Mutual TLS (mTLS)
      • Basic Authentication
    • Advanced Agent Deployment Options
      • Agent Roles
      • Agent Groups
      • Protect Data in Motion with TLS Encryption
      • Low Latency Clusters
      • Network Architecture Considerations
      • Agent Configuration Reference
      • Reducing Infrastructure Costs
      • Client Configuration Auto-tuning
    • Hosted Metadata Endpoint
    • Managed Data Pipelines
      • Cookbooks
    • Schema Registry
      • WarpStream BYOC Schema Registry
      • Schema Validation
      • WarpStream Schema Linking
    • Port Forwarding (K8s)
    • Orbit
    • Enable SAML Single Sign-on (SSO)
    • Trusted Domains
    • Diagnostics
      • GoMaxProcs
      • Small Files
  • Reference
    • ACLs
    • Billing
      • Direct billing
      • AWS Marketplace
    • Benchmarking
    • Compression
    • Protocol and Feature Support
      • Kafka vs WarpStream Configuration Reference
      • Compacted topics
    • Secrets Overview
    • Security and Privacy Considerations
    • API Reference
      • API Keys
        • Create
        • Delete
        • List
      • Virtual Clusters
        • Create
        • Delete
        • Describe
        • List
        • DescribeConfiguration
        • UpdateConfiguration
      • Virtual Clusters Credentials
        • Create
        • Delete
        • List
      • Monitoring
        • Describe All Consumer Groups
      • Pipelines
        • List Pipelines
        • Create Pipeline
        • Delete Pipeline
        • Describe Pipeline
        • Create Pipeline Configuration
        • Change Pipeline State
      • Invoices
        • Get Pending Invoice
        • Get Past Invoice
    • CLI Reference
      • warpstream agent
      • warpstream demo
      • warpstream cli
      • warpstream cli-beta
        • benchmark-consumer
        • benchmark-producer
        • console-consumer
        • console-producer
        • consumer-group-lag
        • diagnose-record
        • file-reader
        • file-scrubber
      • warpstream playground
    • Integrations
      • Arroyo
      • AWS Lambda Triggers
      • ClickHouse
      • Debezium
      • Decodable
      • DeltaStream
      • docker-compose
      • DuckDB
      • ElastiFlow
      • Estuary
      • Fly.io
      • Imply
      • InfluxDB
      • Kestra
      • Materialize
      • MinIO
      • MirrorMaker
      • MotherDuck
      • Ockam
      • OpenTelemetry Collector
      • ParadeDB
      • Parquet
      • Quix Streams
      • Railway
      • Redpanda Console
      • RisingWave
      • Rockset
      • ShadowTraffic
      • SQLite
      • Streambased
      • Streamlit
      • Timeplus
      • Tinybird
      • Upsolver
    • Partitions Auto-Scaler (beta)
    • Serverless Clusters
Powered by GitBook
On this page
  • Prerequisites
  • Step 1: Retrieve the WarpStream Bootstrap Broker URL and SASL credentials
  • Step 2: Deploy Redpanda Console in a Docker container
  • Step 3: Open Redpanda Console
  • Next steps

Was this helpful?

  1. Reference
  2. Integrations

Redpanda Console

Redpanda Console is a web application that helps you manage and debug your Kafka workloads, as well as Kafka protocol-compatible systems such as Redpanda and WarpStream.

PreviousRailwayNextRisingWave

Last updated 12 months ago

Was this helpful?

Prerequisites

  1. WarpStream account - get access to WarpStream by registering .

  2. WarpStream cluster up and running.

  3. installed.

Step 1: Retrieve the WarpStream Bootstrap Broker URL and SASL credentials

In the WarpStream Console, navigate to the Connect tab for your cluster, and copy the Boostrap Broker URL and port.

Next, navigate to the Credentials tab and click New Credentials.

Store the Bootstrap URL and credentials in environment variables for convenient access:

export WARPSTREAM_BOOTSTRAP_HOST=<YOUR_BOOTSTRAP_BROKER> \
WARPSTREAM_SASL_USERNAME=<YOUR_SASL_USERNAME> \
WARPSTREAM_SASL_PASSWORD=<YOUR_SASL_PASSWORD>;

Step 2: Deploy Redpanda Console in a Docker container

Use your Bootstrap Broker URL and SASL credentials to start Redpanda Console:

docker run -p 8080:8080 -e KAFKA_BROKERS=$WARPSTREAM_BOOTSTRAP_HOST -e KAFKA_TLS_ENABLED=true -e KAFKA_SASL_ENABLED=true -e KAFKA_SASL_USERNAME=$WARPSTREAM_SASL_USERNAME -e KAFKA_SASL_PASSWORD=$WARPSTREAM_SASL_PASSWORD docker.redpanda.com/redpandadata/console:latest

Step 3: Open Redpanda Console

In your browser, navigate to localhost:8080 to open Redpanda Console.

You can now use Redpanda Console to inspect and manage your WarpStream cluster.

Next steps

Next, check out the repo on GitHub, or get started with any of the other between WarpStream and other data systems!

Redpanda Console
Integrations
here
Docker