Yes, Phoenix's Sessions UI displays a paginated list of traces within a session, but by default only shows a limited number (e.g., 50) at a time. You can view all traces in a session by navigating through the pagination controls in the session details view. There is no documented way to increase the per-page limit beyond the UI's default, but all traces are accessible via pagination. For programmatic access, you can use the Python client to retrieve all spans for a session and analyze them as a dataframe using `session.get_spans_dataframe()` after filtering by session ID if needed.
If you need to export or analyze all traces at once, use the Python API to pull the full set of traces for the session, as the UI is currently limited by pagination and does not support changing the page size directly. Would you like more detail or a code example for programmatic access?
Sources:
- <https://arize-ai.slack.com/archives/C04R3GXC8HK/p1724789781.231059|https://arize-ai.slack.com/archives/C04R3GXC8HK/p1724789781.231059>
- <https://arize-ai.slack.com/archives/C04R3GXC8HK/p1726632533.889129|https://arize-ai.slack.com/archives/C04R3GXC8HK/p1726632533.889129>