Traceway
Platform

Introduction

The Traceway dashboard — traces, spans, datasets, evals, analytics, and settings.

The Traceway dashboard is a SvelteKit web application at platform.traceway.ai. When running locally, it's served from the API server at http://localhost:3000.

The dashboard provides a visual interface for everything you can do with the API: viewing traces, inspecting spans, managing datasets, running evaluations, reviewing queue items, and configuring settings.

Pages

PagePathDescription
Overview/Summary stats: trace count, span count, recent activity
Traces/tracesList of all traces with search and filtering
Trace detail/traces/:idSpan tree for a single trace
Spans/spansList of all spans with advanced filtering
Analytics/analyticsCharts and aggregates: cost over time, latency distribution, model usage
Datasets/datasetsList of all datasets
Dataset detail/datasets/:idDatapoints, capture rules, queue, and eval runs for a dataset
Eval results/datasets/:id/eval/:run_idResults for a specific eval run
Eval comparison/datasets/:id/compareSide-by-side comparison of eval runs
Review/datasets/:id/reviewQueue review interface
Settings/settingsProject settings, API keys, provider connections, team members

Authentication

In cloud mode, the dashboard requires login. You can sign up at platform.traceway.ai/signup or accept an invite from a team member.

Authentication methods:

  • Email/password — Standard registration and login
  • Session cookies — JWT stored as an HTTP-only cookie
  • API keys — For programmatic access (not used in the dashboard)

In local mode (traceway serve without --cloud), authentication is disabled. The dashboard is open to anyone who can reach the port.

Organizations and projects

In cloud mode, data is organized into:

  • Organizations — The top-level container. Each org has its own billing, members, and data isolation.
  • Projects — Within an organization. Each project has its own traces, spans, datasets, and API keys.

You select a project from the sidebar. All data on the page is scoped to the current project.

Next steps

On this page