rustrak/rustrak-ui

By rustrak

Updated 17 minutes ago

Modern dashboard for Rustrak error tracking. Next.js-based, optional companion to rustrak-server.

Image
Security
Developer tools
Monitoring & observability
1

2.0K

rustrak/rustrak-ui repository overview

Rustrak UI

Modern, responsive dashboard for the Rustrak error tracking system. Built with Next.js 16 and designed to pair with rustrak/rustrak-server.

Features

  • Issue management: Browse, filter, and resolve grouped error issues
  • Event detail: Full stack traces, breadcrumbs, user context, and tags
  • Project management: Multiple projects with individual DSNs and API tokens
  • Source maps: Automatic stack frame rewriting for minified JavaScript
  • Self-hosted: Deploy alongside rustrak-server or on Vercel

Quick Start

services:
  server:
    image: rustrak/rustrak-server:latest
    ports:
      - "8080:8080"
    volumes:
      - rustrak_data:/data
    environment:
      SESSION_SECRET_KEY: ${SESSION_SECRET_KEY}
      CREATE_SUPERUSER: [email protected]:changeme123

  ui:
    image: rustrak/rustrak-ui:latest
    ports:
      - "3000:3000"
    environment:
      RUSTRAK_API_URL: http://server:8080
    depends_on:
      - server

volumes:
  rustrak_data:
SESSION_SECRET_KEY=$(openssl rand -hex 32)
docker compose up -d

Open http://localhost:3000 and log in with your CREATE_SUPERUSER credentials.

Configuration

VariableRequiredDescription
RUSTRAK_API_URLYesURL to the rustrak-server API

Tech Stack

  • Next.js 16 (App Router)
  • TypeScript
  • Tailwind CSS 4
  • Radix UI / shadcn

Tag summary

Content type

Image

Digest

sha256:d257b916c

Size

82.2 MB

Last updated

17 minutes ago

docker pull rustrak/rustrak-ui