diff --git a/docs/concepts/data-management/data-forwarding.mdx b/docs/concepts/data-management/data-forwarding.mdx index e78dafd231448..cd055b35cf2f9 100644 --- a/docs/concepts/data-management/data-forwarding.mdx +++ b/docs/concepts/data-management/data-forwarding.mdx @@ -12,14 +12,21 @@ The plugins listed on this page have been deprecated and will be removed from Se -Sentry provides the ability to forward processed error events to certain third-party providers, such as [Segment](https://segment.com) and [Amazon SQS](https://aws.amazon.com/sqs/). +Sentry provides the ability to forward processed error events to certain third-party providers, namely [Segment](https://segment.com), [Amazon SQS](https://aws.amazon.com/sqs/), and [Splunk](https://www.splunk.com/). This is often useful when you may want to analyze exceptions more deeply, or empower other teams, such as a Business Intelligence function. -Configure Data Forwarding by navigating to your **[Project] » Settings » Data Forwarding**, then providing the required information for the given integration. - Only error events will be forwarded. Forwarding of transaction events is not supported. +Configure Data Forwarding for your organization by navigating to **Settings » Data Forwarding**, then providing the required information for the given integration. Note that only one org-level forwarder can be created for each integration. However, +configs can be overridden with project overrides. + +## Project Overrides + +Project Overrides allows you to have a different forwarding configuration to be different for a particular project. They can be configured for each provider by navigating to **Settings » Data Forwarding » [Provider] » Edit** and scrolling down to **Manage your overrides**. + +![Edit Project Overrides Section](./img/project-overrides.png) + ## Amazon SQS Integration with Amazon SQS makes it quick and easy to pipe exceptions back into your own systems. diff --git a/docs/organization/integrations/data-visualization/amazon-sqs/index.mdx b/docs/organization/integrations/data-visualization/amazon-sqs/index.mdx index 397360990e6bb..9f7f2e37c275f 100644 --- a/docs/organization/integrations/data-visualization/amazon-sqs/index.mdx +++ b/docs/organization/integrations/data-visualization/amazon-sqs/index.mdx @@ -29,6 +29,6 @@ Navigate to **Settings > Integrations > Amazon SQS** ### Data Forwarding -Configure [data forwarding](/concepts/data-management/data-forwarding/) in **[Project] > Settings > Data Forwarding**, and provide the required information for the given integration. +Configure [data forwarding](/organization/integrations/data-forwarding/) in **Settings > Data Forwarding**, and provide the required information for the given integration. The payload for Amazon is identical to our standard API event payload and will evolve over time. For more details on the format of this data, see our [API documentation](/api/events/retrieve-an-event-for-a-project/). diff --git a/docs/organization/integrations/data-visualization/segment/index.mdx b/docs/organization/integrations/data-visualization/segment/index.mdx index 88120bfaeb11e..d26e3ddee0d7f 100644 --- a/docs/organization/integrations/data-visualization/segment/index.mdx +++ b/docs/organization/integrations/data-visualization/segment/index.mdx @@ -36,4 +36,4 @@ Navigate to **Settings > Integrations > Segment** ### Data Forwarding -Configure [data forwarding](/concepts/data-management/data-forwarding/) in **[Project] > Settings > Data Forwarding**, and provide the required information for the given integration. +Configure [data forwarding](/organization/integrations/data-forwarding/) in **Settings > Data Forwarding**, and provide the required information for the given integration. diff --git a/src/middleware.ts b/src/middleware.ts index 8d5120a1476dc..a6fcf5586262d 100644 --- a/src/middleware.ts +++ b/src/middleware.ts @@ -2470,11 +2470,11 @@ const USER_DOCS_REDIRECTS: Redirect[] = [ }, { from: '/learn/data-forwarding/', - to: '/concepts/data-management/data-forwarding/', + to: '/organization/integrations/data-forwarding/', }, { from: '/product/data-forwarding/', - to: '/concepts/data-management/data-forwarding/', + to: '/organization/integrations/data-forwarding/', }, { from: '/data-management-settings/attachment-datascrubbing/',