Analytics dashboard
The Together AI dashboard shows per-endpoint charts for latency, throughput, replica count, and utilization, built on the metric series below. Use the dashboards to monitor an endpoint at a glance and to compare deployments during an A/B test.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. Use the SDK/API to list events:types restricts to specific event-type strings, min_level sets the minimum severity, source_kinds selects endpoint- or deployment-scoped events, since and until bound a time range, subject_id filters to a single subject, deployment_ids scopes to specific deployments, and limit / after paginate (max 500, default 50).
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 thedeployment_ids filter on the same events feed:
Python
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.
Authentication and URL
Metrics are served per organization at: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.