For the complete documentation index, see llms.txt. This page is also available as Markdown.

Your first trace

Upload a trace to Stratix Premium and inspect it — see every span, every cost, every error.

A trace is a record of an AI call (or a chain of calls). Uploading a trace into Premium lets you inspect it in the UI and run trace evaluations against it.

Prerequisites

Option A — Upload via UI

1. Open Traces

Left rail: Agent Evaluation → Traces. Click Upload trace.

2. Drop the JSON file

A valid trace has at least:

{
 "id": "trace-1",
 "name": "answer-question",
 "inputs": {"prompt": "What is the capital of France?"},
 "outputs": {"response": "Paris."},
 "spans": [
 {"name": "llm-call", "kind": "llm", "model": "claude-opus-4-7",...}
 ]
}

3. Confirm

Stratix parses the JSON, infers the schema, and shows a preview. Click Save.

4. Inspect

The trace page shows:

  • The full span tree

  • Per-span model, latency, cost, errors

  • Inputs and outputs at every level

Option B — Ingest via SDK

The trace appears in Agent Evaluation → Traces within seconds.

Verify

Open the trace page; you should see your trace's span tree, inputs, and outputs.

What to try next

  • Score this trace. See Trace evaluations.

  • Ingest more traces. A representative trace set is the starting point for agentic evaluations.

Where to next

Last updated

Was this helpful?