sentry_list_organization_replays
List and monitor user session replays in a Sentry organization. Analyze interactions, errors, and experience issues by retrieving specific replays using project ID, limit, and search queries.
Instructions
List replays from a Sentry organization. Monitor user sessions, interactions, errors and experience issues.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of replays to return | |
project | No | Project ID or slug | |
query | No | Search query |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Number of replays to return",
"type": "number"
},
"project": {
"description": "Project ID or slug",
"type": "string"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [],
"type": "object"
}