KalamDB Admin UI Guide
The Admin UI is served by the KalamDB server at /ui and is the fastest way to run SQL, inspect metadata, and monitor operations.
Access The UI
Open:
http://localhost:8080/ui/sqlIf server setup is not complete, finish bootstrap first from Authentication & Bootstrap.
Sign In
Use a real DBA/system account you created during setup. There is no universal hardcoded production credential.
After login, the UI stores auth state using secure cookie/token flow from /v1/api/auth/* endpoints.
SQL Studio
SQL Studio is the primary workspace:
- namespace/table explorer
- multi-tab SQL editor
- results and execution details
- schema context and recent query history
Starter query:
SELECT * FROM system.namespaces LIMIT 100;Main Navigation Areas
Dashboard: health and high-level runtime indicatorsSQL Studio: query execution and schema explorationStreaming: topic monitoring and stream operationsUsers: user/role administrationJobs: background job tracking (flush/retention/cleanup)Live Queries: active subscription inspectionLogging: server/job/audit log viewsSettings: runtime configuration values exposed by the backend
Practical Operator Workflow
- Check node health and queue pressure in
Dashboard. - Validate schema and data paths in
SQL Studio. - Inspect
Jobsfor flush and maintenance behavior. - Review
Live QueriesandStreamingfor realtime workload behavior. - Verify production guardrails in
Settingsbefore rollout.
Last updated on