Skip to main content
Dedicated model inference records latency, throughput, and utilization metrics for every endpoint and deployment. These are the same series that drive autoscaling.

Analytics dashboard

The Together AI console shows per-endpoint charts for requests, tokens per second, input and output tokens, latency, and time to first token, built on the metric series below. Open an endpoint and select the Analytics tab. Switch between Usage and Errors, view the endpoint Total or break it down By deployment, and adjust the time range. Use the dashboard to monitor an endpoint at a glance and to compare deployments during an A/B test.
The Analytics tab for an endpoint in the Together AI console, with charts for requests, tokens per second, input tokens, and output tokens, plus Usage and Errors toggles, a Total and By deployment breakdown, and a time-range selector.
The charts populate once the endpoint starts serving requests.

Events

Each endpoint has an audit feed of events, newest first. It merges endpoint-scoped events with the deployment-scoped events for every deployment under the endpoint, so scale-ups, traffic shifts, readiness changes, and pauses across every deployment all surface here. Use it to trace what happened during an autoscaling event or a traffic-split change. In the console, open an endpoint and select the Logs tab to browse the feed, with columns for time, type, source, level, and message.
The Logs tab for an endpoint in the Together AI console, an event feed with Time, Type, Source, Level, and Message columns showing the deployment's lifecycle events.
To read the feed from the terminal, list events with the CLI. Pass the endpoint ID or name:
Shell
Optional flags narrow the feed:
  • --types restricts to specific event-type strings, comma-separated (for example deployment.scaled,condition.set).
  • --min-level sets the minimum severity: debug, info, warn, or error.
  • --since and --until bound a time range.
  • --subject-id filters to a single subject, such as a rollout ID.
  • --deployment-ids scopes to specific deployments, comma-separated.
  • --limit and --after paginate (max 10000, default 50). When more events remain, the CLI prints the --after command for the next page.
Add --json for the raw event objects, including fields the table view omits. See the endpoints CLI reference for the full flag list.
Endpoint mutation events such as endpoint.updated record when a change happened, but they don’t include a field-level diff. Keep configuration history in your deployment system if you need to reconstruct exactly what changed.

Deployment events

To follow a single deployment instead of the whole endpoint, pass its ID to the --deployment-ids filter on the same events feed:
Shell
Filtering by deployment ID excludes endpoint-scoped events such as endpoint.updated, so the output covers only the listed deployments’ lifecycles.

Prometheus-compatible metrics endpoint

The metrics endpoint is in beta. The host and path below are subject to change, and access may need to be enabled for your organization. Confirm availability with your Together AI contact before you build against it.
Scrape real-time, per-organization performance metrics for your dedicated endpoints in standard Prometheus format. The endpoint works with any Prometheus-compatible scraper, including Prometheus, Grafana Agent, the Datadog OpenMetrics integration, and Vector.

Authentication and URL

Metrics are served per organization at:
Authenticate with your API key as a bearer token. The endpoint is org-scoped by design, so it returns only your organization’s data:
Shell

Prometheus scrape config

Point a Prometheus-compatible scraper at the endpoint:

Available metrics

Metrics are grouped by the stage of the request path they measure: the edge (front-door proxy), the router, and the worker (model server). Latency metrics are histograms, exposed as _bucket, _sum, and _count series; counters end in _total; gauges are point-in-time values.

Edge (front-door proxy)

Router

Worker (model server)

Labels

Series carry labels that identify the resource and slice the data. Not every label appears on every metric.

Next steps

Configure autoscaling

Pick a metric to autoscale a deployment on.

Route traffic

See how the endpoint routes requests across deployments.