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

# Overview

> Inspect agent telemetry (traces, metrics, and logs) on the Dashboard.

Zero Runtime's observability tools give you deep insight into your agent's performance and behavior. Every session emits telemetry automatically. The Dashboard collects and visualizes it by default, with no extra setup.

## What Gets Captured

Every agent session emits three signals:

| Signal  | Captures                                         |
| ------- | ------------------------------------------------ |
| Traces  | Spans for STT, LLM, TTS, EOU, and tool calls.    |
| Metrics | Latency percentiles, durations, and token usage. |
| Logs    | Runtime log records, filtered by level.          |

Recording captures the session audio and video alongside this telemetry. See [Recording](/build/observability-and-monitoring/recording).

## What's Next

<CardGroup cols={2}>
  <Card title="Recording" icon="video" href="/build/observability-and-monitoring/recording">
    Capture session audio and video alongside this telemetry.
  </Card>

  <Card title="Observability Options" icon="sliders" href="/build/observability-and-monitoring/analytics/observability-options">
    Configure recording. Traces, metrics, and logs are captured for every session and shown on the Dashboard.
  </Card>

  <Card title="Session Insights" icon="chart-line" href="/build/observability-and-monitoring/analytics/session-analytics">
    Review per-session metrics, transcripts, and recording playback on the Dashboard.
  </Card>

  <Card title="Trace View" icon="diagram-project" href="/build/observability-and-monitoring/analytics/traces">
    Break a session into traces and spans to find bottlenecks and debug errors.
  </Card>
</CardGroup>

## References

<Tabs>
  <Tab title="Python">
    #### Examples

    <CardGroup cols={2}>
      <Card title="Observability Hooks" icon="github" href="https://github.com/ZeroRuntimeAI/zrt-python-sdk-examples/blob/main/features/metrics.py">
        Collect metrics and traces from a session.
      </Card>
    </CardGroup>

    #### SDK Reference

    <CardGroup cols={2}>
      <Card title="Metrics" icon="chart-simple" href="/api-reference/python/core/events">
        `Metrics` in the Python API reference.
      </Card>
    </CardGroup>
  </Tab>
</Tabs>
