# tinker session ## **tinker session** Manage sessions. ### tinker session export-trace *SESSION_ID* Export a session's timeline as a Perfetto trace (.pftrace). Builds a trace of the session's training and sampling requests on the server and downloads it. Open the resulting file in https://ui.perfetto.dev to view the timeline. **Options:** - `-o, --output PATH` — Output file path (default: ./``.pftrace) - `--url-only` — Print the signed download URL instead of downloading the trace ```bash # Creates ./.pftrace tinker session export-trace # Custom output path tinker session export-trace --output my-session.pftrace # Just print the signed download URL (expires after about an hour) tinker session export-trace --url-only ```