Skip to content
Draft
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
13 changes: 10 additions & 3 deletions docs/concepts/data-management/data-forwarding.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,21 @@ The plugins listed on this page have been deprecated and will be removed from Se

</Alert>

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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/',
Expand Down
Loading