Skip to main content
This guide shows you how to set up Sentry integration for your self-hosted Plane instance. Unlike Plane Cloud where Sentry comes pre-configured, self-hosted instances require you to create a custom integration in Sentry and configure your Plane deployment with the necessary credentials.
What you’ll accomplish:
  1. Create a Sentry custom integration with proper permissions and webhooks
  2. Configure your Plane instance with Sentry credentials
  3. Enable error tracking and automatic issue creation from Sentry alerts

Before you begin

You’ll need:
  • Administrator access to your Sentry organization
  • Access to your Plane instance configuration files
  • Your Plane instance domain (e.g., plane.yourcompany.com)

Create Sentry custom integration

A custom integration (also called a public integration) connects your Sentry organization to Plane, enabling bidirectional communication for issue tracking and alert handling.
  1. Log in to your Sentry organization.
  2. Go to SettingsDeveloper SettingsCustom Integrations.
  3. Click Create New Integration.
  4. Select Public Integration.
  5. Fill in these fields on the integration creation screen:
    Replace [YOUR_DOMAIN] with your actual Plane instance domain. For example, if your Plane instance is at plane.company.com, your Webhook URL would be https://plane.company.com/silo/api/sentry/sentry-webhook/
Field explanations: Webhook URL
Sentry sends event notifications to this endpoint. Plane processes these webhooks to sync Sentry issues with Plane work items.
Redirect URL
After OAuth authorization, Sentry redirects users back to this URL to complete the connection.
Alert Rule Action
Enables automatic Plane work item creation when Sentry alert rules trigger.

Configure integration schema

The schema defines how Sentry and Plane interact—what fields appear when creating issues and how alert rules behave. Paste this schema into the Schema field:
What this schema enables Work item linking
The first element defines how users create new Plane work items from Sentry or link existing ones. Required fields (title, description, project) ensure every work item has essential information. Optional fields (assignees, priority, labels, state, module, cycle) provide flexibility for detailed work item tracking.
Alert rule actions
The second element enables automatic work item creation when Sentry alerts fire. You can configure whether alerts create regular work items or intake work items for triage, and set default assignees, states, and labels.

Set permissions

Configure these permissions to allow Sentry to interact with Plane appropriately:

Enable webhooks

Webhooks keep Plane and Sentry synchronized. When issues change in Sentry, Plane receives notifications and updates accordingly. Enable the issue webhook with these events:

Save and retrieve credentials

After saving your integration, Sentry generates OAuth credentials:
  • Client ID - A public identifier for your integration
  • Client Secret - A private key used to authenticate API requests
Important The Client Secret is only displayed once immediately after creating the integration. Copy it now and store it securely. If you lose it, you’ll need to regenerate the integration.
Copy both the Client ID and Client Secret. You’ll need these in the next step.

Configure your Plane instance

Add Sentry credentials to your Plane instance so it can communicate with Sentry’s API.

Locate your configuration file

For Docker deployments:
  • Edit plane.env in your Plane installation directory
For Kubernetes deployments:
  • Edit your custom-values.yaml file or ConfigMap containing environment variables

Add environment variables

Add these variables to your Plane configuration: For Docker (plane.env):
For Kubernetes (custom-values.yaml):
Replace <your_client_id> and <your_client_secret> with the credentials from Step 1.

Environment variable reference

Using self-hosted Sentry?
If you’re running your own Sentry instance, change SENTRY_BASE_URL to your Sentry domain. All other configuration remains the same.

Restart Plane

Apply the configuration changes: For Docker:
For Kubernetes:

Activate integration in your workspace

Once you’ve completed the instance configuration, activate the Sentry integration in Plane. For questions about Sentry integration, contact support@plane.so.