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

# Observability

> Monitor and track your agent runs

# Monitoring Your Agent

Keep track of your agent's performance and execution history through our Agent Dashboard.

## Agent Dashboard

All runs of your agents, both past and current, can be viewed directly in the Agent Dashboard. This provides you with:

* Real-time execution status
* Historical run data
* Execution logs
* Videos associated with each run

To access this information, simply:

1. Click on "My Agents" from the homepage
2. This will take you to the Agent Dashboard where you can see all your agents
3. View all past and present runs for any of your agents
4. Click on any specific run to see detailed information including execution logs and videos

## Session Viewer

You can also view and share specific agent sessions through our session viewer.

<div className="mt-6 mb-8">
  <div className="w-full rounded-lg border border-gray-200 overflow-hidden shadow-sm">
    <input
      type="text"
      id="session-id"
      placeholder="Enter your session ID here and press Enter"
      className="w-full p-4 text-gray-700 focus:outline-none border-none"
      onKeyDown={(e) => {
    if (e.key === "Enter") {
      const sessionId = document.getElementById("session-id").value;
      if (sessionId) {
        window.open(
          `https://app.trykura.com/public-session-viewer/${sessionId}`,
          "_blank",
        );
      }
    }
  }}
    />
  </div>

  <p className="mt-3 text-gray-500 text-sm">
    Enter your session ID in the field above and press Enter to open the session
    viewer in a new tab.
  </p>
</div>
