Request logs
The Logs page is the request-by-request record of traffic to a server. Each entry is one MCP request: the method that was called, whether it was a standard JSON-RPC call such astools/list or a specific tool invocation, the status the
gateway returned, and when it happened. A histogram above the list shows request
frequency over the selected time range, so a spike or a gap is visible before you
read a single row.
Selecting a request opens its full detail, including the request and response
payloads. This is the first place to look when a client reports that a call
failed: you can confirm whether the request reached the gateway, how it was
routed, and whether it was accepted or rejected before assuming the problem is in
server code. Filter to errors only to narrow a noisy stream down to the requests
that did not succeed.
Logs refresh live as new requests arrive, and pause when you want to study a
fixed window without rows shifting underneath you.
Sessions
An MCP client that initializes a session receives anmcp-session-id and sends
it on follow-up requests, so a session is the unit that ties a client’s related
calls together. The Sessions page lists those sessions over time. Each row
carries the session identifier, the user behind it, which client it came from
such as Claude, Cursor, or ChatGPT, its start and most recent activity, and how
many tool calls it has made, so a long-running or unusually busy session stands
out from routine traffic.
Selecting a session opens its full metadata in a side panel, including the
client name, version, and protocol version it negotiated. Use sessions when you
need to follow one client’s activity as a unit rather than as scattered
individual requests, such as understanding the shape of a single agent’s
interaction with the server.
For how Horizon issues and preserves session routing at the request layer, see
Gateway.
Users
The Users page answers who is actually using a server rather than how many requests it served. It charts active users over the selected window alongside the cumulative count of new users, which separates a server that a few people use heavily from one that is steadily reaching more of the organization. The list pages through individual users, and selecting one opens that user’s profile and activity. The identity shown here is the verified caller identity the gateway attached to the request, so it reflects the same authentication that controls access. For how that identity is established, see Authentication.Performance metrics
Where logs and sessions describe individual traffic, the Observability page describes the server’s behavior in aggregate. Three charts cover the questions you ask when a server feels slow or unhealthy:- Duration shows request latency as a distribution, including average, p50, p95, and p99, so a tail of slow requests is visible even when the average looks fine.
- Invocations shows total requests over time, which is how you confirm whether a latency change tracks a change in load.
- Memory shows memory usage and allocation, which is where you look when a server is being terminated for exceeding its limit rather than returning errors.
Server logs
Request logs and metrics describe traffic from the outside. The logs the server itself produced live with the deployment that produced them, reached from a build or deployment on the Deployments page.| Log type | Captures | When | Answers |
|---|---|---|---|
| Build logs | The build process that turned a commit into a deployable artifact: dependency installation, entrypoint detection, inspection, and any packaging failure. | Stream while a build runs; remain available once it finishes. | Why a deploy never went live. |
| Server logs | The running server’s stdout and stderr. | After the server is deployed. | Where your own logging and uncaught errors appear. |
Time ranges and history
Every analytics view shares a time-range selector covering recent windows from the last five minutes through the last several days, and the live views refresh on their own so a dashboard left open keeps current. On the Observability performance charts, the longest ranges are plan-gated. Standard plans retain of metrics history; plans extend that to . Selecting one of the longer ranges without that plan prompts you to upgrade rather than silently returning a short window.Related docs
Gateway
See how requests are received, routed, and recorded before reaching server code.
Compute model
Learn how the runtime handles requests, memory, timeouts, and server logs.
Deployments
Find build and server logs for a specific build or deployment.
Authentication
Learn how the caller identity shown in sessions and users is verified.