sentry_setup_project
Set up Sentry for a project by generating a DSN and providing platform-specific installation instructions to enable error monitoring and performance tracking.
Instructions
Set up Sentry for a project returning a DSN and instructions for setup.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
platform | No | Platform for installation instructions | javascript |
projectSlug | Yes | Project slug/identifier |
Input Schema (JSON Schema)
{
"properties": {
"platform": {
"default": "javascript",
"description": "Platform for installation instructions",
"type": "string"
},
"projectSlug": {
"description": "Project slug/identifier",
"type": "string"
}
},
"required": [
"projectSlug"
],
"type": "object"
}