From 353ee79faa3ca47be1038dcffa104d2c6512ad85 Mon Sep 17 00:00:00 2001 From: Hubert Deng Date: Tue, 23 Jul 2024 13:19:11 -0700 Subject: [PATCH 1/2] docs for errors only self hosted --- develop-docs/self-hosted/index.mdx | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/develop-docs/self-hosted/index.mdx b/develop-docs/self-hosted/index.mdx index 3658f1fda1a48..0a5e8a271b402 100644 --- a/develop-docs/self-hosted/index.mdx +++ b/develop-docs/self-hosted/index.mdx @@ -108,6 +108,37 @@ By default Sentry sends anonymous usage statistics to the Sentry team. It helps You can disable this feature by adding `SENTRY_BEACON = False` into `sentry.conf.py` file. +## Errors-only Self-hosted Sentry + +**Disclaimer: This is an experimental beta feature. This means that features and workflows are not completely tested, so use at your own risk!** + +Starting from 24.8.0+, users will have the ability to choose between two distinct types of self-hosted Sentry deployments. + +**Errors Only** + +Errors Only self-hosted offers a small subset of features with an emphasis on minimizing system resources. This lightweight option includes only the following features: +1. Issues +2. Alerts +3. Integrations +4. Dashboards +5. Releases +6. Discover + +In order to enable errors only self-hosted, you'll need to update your [.env file](https://github.com/getsentry/self-hosted/blob/master/.env) to include `COMPOSE_PROFILES=errors-only`. + +**Feature Complete** + +This is our default version of self-hosted Sentry. It includes most of the features that are available on our SaaS product. This includes everything offered in the Errors Only version, plus the following: +1. Traces +2. Profiles +3. Replays +4. Insights (Requests, Queries, Assets, etc) +5. User Feedback +6. Performance +7. Crons + +This version of Sentry is enabled by default upon installation. Ensure that your [.env file](https://github.com/getsentry/self-hosted/blob/master/.env) includes `COMPOSE_PROFILES=feature-complete`. + ## Configuration You very likely will want to adjust the default configuration for your Sentry installation as well. These facilities are available for that purpose: From 7857c1f0e6e9f769895ab16d31fc58a3338a390c Mon Sep 17 00:00:00 2001 From: Hubert Deng Date: Tue, 23 Jul 2024 16:14:47 -0700 Subject: [PATCH 2/2] wording tweaks --- develop-docs/self-hosted/index.mdx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/develop-docs/self-hosted/index.mdx b/develop-docs/self-hosted/index.mdx index 0a5e8a271b402..4cda6a9049f54 100644 --- a/develop-docs/self-hosted/index.mdx +++ b/develop-docs/self-hosted/index.mdx @@ -110,9 +110,11 @@ You can disable this feature by adding `SENTRY_BEACON = False` into `sentry.conf ## Errors-only Self-hosted Sentry -**Disclaimer: This is an experimental beta feature. This means that features and workflows are not completely tested, so use at your own risk!** + +This is an experimental beta feature. This means that features and workflows are not completely tested, so use at your own risk! + -Starting from 24.8.0+, users will have the ability to choose between two distinct types of self-hosted Sentry deployments. +Starting from 24.8.0+, users will have the ability to choose between two distinct types of self-hosted Sentry deployments: errors only or feature complete.. **Errors Only** @@ -128,7 +130,7 @@ In order to enable errors only self-hosted, you'll need to update your [.env fil **Feature Complete** -This is our default version of self-hosted Sentry. It includes most of the features that are available on our SaaS product. This includes everything offered in the Errors Only version, plus the following: +This is our default version of self-hosted Sentry. It includes most of the features that are available on our SaaS product, which is everything offered in the Errors Only version, plus the following:: 1. Traces 2. Profiles 3. Replays