Documentation Index
Fetch the complete documentation index at: https://ray-preview.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Metrics
Ray exports time-series metrics in Prometheus format from every component:- GCS (cluster control plane)
- raylet (per-node scheduler)
- dashboard agent (per-node aggregator)
- library-specific metrics (Ray Data, Ray Train, Ray Serve)
Logs
Each Ray process writes logs to/tmp/ray/session_latest/logs/:
dashboard.loggcs_server.outmonitor.out(autoscaler)raylet.outworker-*.out/worker-*.err
ray.init(log_to_driver=False).
State API
A REST and Python API for inspecting the live state of a Ray cluster:ray summary actors, ray list tasks, ray list nodes.
Profiling
- py-spy for CPU profiles. Trigger from the dashboard’s Stack Trace action.
- memray for memory allocations.
- Chrome trace:
ray timeline -o trace.jsonand open inchrome://tracing.
Tracing
OpenTelemetry-style distributed tracing across tasks, actors, and library calls. Configure exporters at the application layer (FastAPI, vLLM); Ray-internal spans are gated behind a feature flag.Dashboard
Ties metrics, logs, profiles, and the State API into a single browser UI. Available athttp://<head>:8265.
Next steps
Dashboard
Browser UI walkthrough.
Metrics
Prometheus integration.