Skip to Content
🚀 KalamDB v0.3.0-alpha2 is out — Learn more
Getting StartedAdmin UI Guide

KalamDB Admin UI Guide

The Admin UI gives you one place to run SQL, inspect namespaces/tables, monitor jobs, review logs, and manage settings.

Access the UI

Open:

http://localhost:8080/ui/sql

If you are not authenticated, KalamDB redirects to the login page.

KalamDB Admin login page

Sign in

Use an account with DBA or system privileges.

For your local environment:

  • Username: admin
  • Password: kalamdb123

After login, you land in SQL Studio.

SQL Studio

SQL Studio is the main workspace for querying and inspection:

  • Explorer panel for namespaces and tables
  • Query tabs for drafting/saving SQL
  • Run query execution with result/log tabs
  • Details/History side panel for schema and query context

SQL Studio overview

Run your first query

The default editor query is:

SELECT * FROM system.namespaces LIMIT 100;

Click Run query to populate the Results tab.

SQL Studio query results

The left sidebar exposes these operational areas:

  • Dashboard: health strip, queue pressure, and system counts (namespaces, tables, users, jobs, storages, connections).
  • Streaming: topic inventory and diagnostics, with quick actions like Open SQL and Inspect.
  • Users: search users and create new users.
  • Jobs: monitor background jobs and apply filters.
  • Live Queries: inspect active subscriptions and apply user/namespace/table filters.
  • Logging: audit, jobs, and server logs with detail drill-down.
  • Settings: view grouped runtime configuration (auth, cluster, limits, logging, storage, websocket, and more).

Dashboard Streaming topics Users page Jobs page Live Queries page Logging page Settings page

Practical workflow

  1. Validate node health in Dashboard.
  2. Run and iterate on SQL in SQL Studio.
  3. Check execution and background activity in Jobs and Logging.
  4. Review streaming activity in Streaming and Live Queries.
  5. Verify configuration in Settings before production changes.
Last updated on