sentry_end_session
End the current Cursor Sentry session with specified status, such as exited, crashed, abnormal, or errored, to monitor application health and error handling.
Instructions
End the current session with a specific status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | No | How the session ended | exited |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"default": "exited",
"description": "How the session ended",
"enum": [
"exited",
"crashed",
"abnormal",
"errored"
],
"type": "string"
}
},
"type": "object"
}