sentry_search_errors_in_file
Identify Sentry errors linked to a specific file or file path. Input the project slug and filename to generate a list of issues for troubleshooting.
Instructions
Search for Sentry errors occurring in a specific file. Find all issues related to a particular file path or filename.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | File path or filename to search for | |
projectSlug | Yes | Project slug/identifier |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"description": "File path or filename to search for",
"type": "string"
},
"projectSlug": {
"description": "Project slug/identifier",
"type": "string"
}
},
"required": [
"projectSlug",
"filename"
],
"type": "object"
}