Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/open-search/opensearch-flow.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/sentry/public-integration.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/sentry/sentry-permissions.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/sentry/sentry-webhook-config.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 1 addition & 20 deletions self-hosting/govern/advanced-search.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -249,26 +249,7 @@ Instead, Plane batches updates through Redis. When a signal fires, the update go
The batching pattern also provides resilience. If OpenSearch is temporarily unavailable, updates accumulate in Redis and process once connectivity returns. This requires Redis 6.2+ which supports the LPOP count operation needed for efficient batch retrieval.

### The complete flow
```
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Plane Web │────▶│ Plane API │────▶│ OpenSearch │
│ (Search) │ │ (Query) │ │ (Indices) │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│ Database signals
┌─────────────────┐
│ Redis Queue │
│ (Batching) │
└─────────────────┘
│ Celery task (every 5s)
┌─────────────────┐
│ Celery Worker │────▶ Batch updates
│ (Processing) │
└─────────────────┘
```
![OpenSeach flow](/images/open-search/opensearch-flow.webp)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Typo in alt text: "OpenSeach" should be "OpenSearch".

The alt text is missing the 'r' in "OpenSearch".

Proposed fix
-![OpenSeach flow](/images/open-search/opensearch-flow.webp)
+![OpenSearch flow](/images/open-search/opensearch-flow.webp)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
![OpenSeach flow](/images/open-search/opensearch-flow.webp)
![OpenSearch flow](/images/open-search/opensearch-flow.webp)
🤖 Prompt for AI Agents
In `@self-hosting/govern/advanced-search.mdx` at line 252, Typo in the image alt
text: change the alt string "OpenSeach flow" to "OpenSearch flow" in the
markdown image element (look for the line containing "![OpenSeach
flow](/images/open-search/opensearch-flow.webp)"); update the alt text only so
accessibility and captions reflect the correct name "OpenSearch".


When you search, queries bypass this synchronization process entirely. The Plane API sends your search query directly to OpenSearch, which returns results almost instantly. Your database isn't involved in search queries at all — this is the key to search performance.

Expand Down
6 changes: 6 additions & 0 deletions self-hosting/govern/integrations/sentry.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ A custom integration (also called a public integration) connects your Sentry org
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/`
</Note>

![Public integration](/images/sentry/public-integration.webp)

**Field explanations:**

**Webhook URL**
Expand Down Expand Up @@ -236,6 +238,8 @@ Configure these permissions to allow Sentry to interact with Plane appropriately
| **Member** | Read | Access member details for assignee functionality |
| **Alerts** | Read | Enable alert rule actions for automatic issue creation |

![Sentry integration permissions](/images/sentry/sentry-permissions.webp)

### Enable webhooks

Webhooks keep Plane and Sentry synchronized. When issues change in Sentry, Plane receives notifications and updates accordingly.
Expand All @@ -250,6 +254,8 @@ Enable the **issue** webhook with these events:
| **archived** | Reflect archived status in Plane |
| **unresolved** | Update Plane when resolved issues reopen |

![Sentry webhook configuration](/images/sentry/sentry-webhook-config.webp)

### Save and retrieve credentials

After saving your integration, Sentry generates OAuth credentials:
Expand Down
Loading