> ## Documentation Index
> Fetch the complete documentation index at: https://docs.honeyhive.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Explore in UI

> Learn how to navigate, debug, and curate data from your traces in the Traces page

The Traces page provides three views for exploring your traced data:

* **Sessions** - Navigate between complete traces (end-to-end user interactions)
* **Completions** - Browse individual LLM requests across all traces
* **All Events** - View every span and event in your project

## Session Side View

Click a session to open the side view. The side view provides five visualization tabs, each offering a different way to inspect the trace:

<CardGroup cols={2}>
  <Card title="Tree View" icon="list-tree" href="/v2/tracing/tree-view">
    Hierarchical span tree showing parent-child relationships, session summary stats, and event details.
  </Card>

  <Card title="Timeline View" icon="clock" href="/v2/tracing/timeline-view">
    Gantt-style chart of span durations for spotting latency bottlenecks.
  </Card>

  <Card title="Graph View" icon="diagram-project" href="/v2/tracing/graph-view">
    Directed graph of execution flow with latency bottlenecks and common agent paths.
  </Card>

  <Card title="Trajectory View" icon="route" href="/v2/tracing/trajectory-view">
    Bubble chart of agent behavior patterns across execution steps.
  </Card>

  <Card title="Thread View" icon="message" href="/v2/tracing/thread-view">
    Chronological message thread for conversational and multi-agent traces.
  </Card>
</CardGroup>

## Debug LLM requests in Playground

When an LLM output doesn't look right, you can debug it by opening the model event in the Playground to iterate on your prompt.

1. Click on any session in the Traces page to open the trace detail view
2. In the trace tree, click on the LLM completion you want to debug
3. Click the **Open in Playground** button in the top right

<Frame caption="Trace detail view with Open in Playground and Share buttons">
  <img src="https://mintcdn.com/honeyhiveai/3gngxp5bnFS6hQ1x/images/trace-detail-view.png?fit=max&auto=format&n=3gngxp5bnFS6hQ1x&q=85&s=dd0c023acdb58699df21a3a356bedc5a" alt="Trace detail view showing span tree, Open in Playground button, and Share button" width="1600" height="1122" data-path="images/trace-detail-view.png" />
</Frame>

## Annotate outputs

For manual review workflows, see [Annotation Queues](/v2/evaluation/annotation-queues) to set up human evaluation criteria and organize events for review.

<Tip>Use keyboard shortcuts ⬆️ and ⬇️ to quickly navigate between rows in the Traces page.</Tip>

## Curate datasets

You can add any session, completion, or span to a dataset directly from the UI.

1. In the Traces page, use filters to find the events you want
2. Select one or more rows using the checkboxes
3. Click **+ Add To** → **Add to Dataset**
4. Select an existing dataset or create a new one

<Frame caption="Adding sessions to a dataset">
  <img src="https://mintcdn.com/honeyhiveai/8CSzfyX-NUZzkr98/images/add-to-dataset.png?fit=max&auto=format&n=8CSzfyX-NUZzkr98&q=85&s=dc12dad196b1a70c2688769f0bd3138e" alt="Traces page with selected sessions and Add To dropdown open" width="1026" height="251" data-path="images/add-to-dataset.png" />
</Frame>

<Tip>Use the **Completions** tab to curate individual LLM requests, or **Sessions** tab for complete traces.</Tip>

## Share traces

Click the **Share** button in the top right of any trace to copy a shareable link. Anyone on your team with access to the project can view it.

<Note>If you share a child event, the link takes viewers directly to that specific event within the trace.</Note>
