sentry_set_context
Set custom context data for error monitoring, performance tracking, and application health using a structured input schema for integration with Sentry.
Instructions
Set custom context data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | Yes | Context data | |
name | Yes | Context name |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"additionalProperties": true,
"description": "Context data",
"type": "object"
},
"name": {
"description": "Context name",
"type": "string"
}
},
"required": [
"name",
"context"
],
"type": "object"
}