Session Tracking
Sessions let you group logs from the same user session, making it easy to follow a user’s journey through your application.Automatic Session Tracking
In Rails, Recall automatically captures the session ID fromsession.id:
Manual Session ID
Set a custom session identifier:- API requests without Rails sessions
- Mobile app sessions
- Custom session management
Query by Session
Find all logs for a session:Session Timeline
The dashboard shows a timeline view of session events:Correlation IDs
For distributed systems, use correlation IDs alongside sessions:Session Analytics
Get session statistics:- Log count per session
- Error rate per session
- Active sessions over time