Skip to content

Commit 7fb3dc4

Browse files
committed
updated url and added redirect
1 parent 09c8e87 commit 7fb3dc4

File tree

10 files changed

+84
-3
lines changed

10 files changed

+84
-3
lines changed

docs/product/issues/issue-details/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A few tags are shown as a preview on the page, but to see more, you can either c
3232

3333
The first and last time the issue has been seen will be displayed here. These values will depend on your environment selection and will be updated if you change the environments. If you have releases set up, the first and last release where the issue was seen will be shown
3434

35-
The solutions hub contains features from [Seer](/product/issues/issue-details/sentry-ai) that help you understand and fix issues.
35+
The solutions hub contains features from [Seer](/product/issues/issue-details/seer) that help you understand and fix issues.
3636

3737
If you have [issue tracking](/organization/integrations/issue-tracking) set up, integrations or linked issues will appear.
3838

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
title: Seer
3+
description: "Learn about the AI features that help you understand and fix issues faster."
4+
sidebar_order: 50
5+
---
6+
7+
Seer is Sentry's AI agent that powers a set of tools to help you quickly understand an issue, find a root cause, and create a fix. You can find it in the **Solutions Hub** section of the issue details page after clicking on any error from the [**Issues**](https://sentry.io/orgredirect/organizations/:orgslug/issues/) page.
8+
9+
Once you've set up Seer, you'll be able to use the following features:
10+
11+
- [**Issue Summary**](#issue-summary): A quick summary of all the data in the issue to help you understand what's going on at-a-glance.
12+
- [**Autofix**](#autofix): A collaborative workflow to find the root cause of an error and create a PR that fixes it.
13+
14+
<Alert>
15+
16+
Issue Summary and Autofix are currently in Beta, free of charge, for paid Sentry customers. Feedback is highly welcomed and can be submitted in-product or via email to [email protected]. Seer is not available for EU customers at this time.
17+
18+
</Alert>
19+
20+
## Issue Summary
21+
22+
The Issue Summary provides a quick overview of an issue by highlighting key insights taken from event and issue-level metadata. You'll see a quick overview of what's going wrong, a potential cause, and if relevant, insights from trace-connected issues, all in the Solutions Hub in the sidebar:
23+
24+
![Solutions Hub](./img/solutions-hub.png)
25+
26+
## Autofix
27+
28+
<Alert>
29+
30+
Autofix replaces Suggested Fix (an earlier feature that has been sunset).
31+
32+
</Alert>
33+
34+
**Autofix** uses Sentry's context (issue details, tracing data, and profiles), your codebase (integrated through GitHub), and its interactions with you to gain context, reason through the problem, and get a deeper understanding of the root cause.
35+
36+
When you start an Autofix run, you'll see the following screen, with an option to share any additional context:
37+
38+
![Autofix Start Screen](./img/autofix-start-screen.png)
39+
40+
Autofix will then analyze the issue and relevant code to help identify the root cause and a solution. You'll see a live stream of Autofix's thought process in real-time as it works through the problem. Autofix will share key insights as they come up and you'll have the option to expand each. You'll see the event data and code that support Autofix conclusions, building a clear chain of reasoning back to the root cause.
41+
42+
Since Autofix doesn’t have all the context, collaboration leads to the best results. You can step in at any time to add context or feedback. If Autofix encounters gaps in its understanding, it will ask for your input.
43+
44+
The output will be a clearly defined root cause of the Sentry issue, and a detailed solution for how to resolve it:
45+
46+
![Autofix Insights](./img/autofix-rootcause.png)
47+
48+
You are free to edit or adjust this solution based on your own context and preferences. Once you are ready to proceed, you can select "Code It Up" to generate code resolving the bug. You have three options:
49+
50+
- Write a fix
51+
- Write a unit test reproducing the issue
52+
- Write both
53+
54+
![Autofix Results](./img/autofix-results.png)
55+
56+
Once the coding step is complete, you can either create a Pull Request (PR) directly from Autofix, or create a branch and checkout the code locally if you would like to iterate further.
57+
58+
![PR Options](./img/pr-options.png)
59+
60+
## Data Processing
61+
62+
We use the data listed below for analysis and to provide solutions for your review. Your data will not be used to train any models or to generate output shown to others. These features are powered by generative AI models hosted by the feature-specific subprocessors identified on our [subprocessor list](https://sentry.io/legal/subprocessors/). Our subprocessors will only use the data as directed by us.
63+
64+
The data used for these features includes:
65+
66+
- Error messages
67+
- Stack traces
68+
- Sentry spans
69+
- DOM interactions
70+
- Profiles
71+
- Relevant code from linked repositories
72+
73+
You can learn more about our data privacy practices [here](https://docs.sentry.io/security-legal-pii/security/ai-ml-policy/#use-of-identifying-data-for-generative-ai-features).
74+
## Disabling AI Features
75+
76+
If you don't find the feature useful and want to disable it for all users, you
77+
can do so in your organization's settings with the "Hide AI Features" toggle. Also remember that the features won't be available until the proper consent is given for your organization.

src/middleware.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2549,6 +2549,10 @@ const USER_DOCS_REDIRECTS: Redirect[] = [
25492549
from: '/product/performance/display/',
25502550
to: '/product/insights/overview/filters-display/',
25512551
},
2552+
{
2553+
from: '/product/issues/issue-details/sentry-ai/',
2554+
to: '/product/issues/issue-details/seer/',
2555+
},
25522556
{
25532557
from: '/product/issues/issue-owners/',
25542558
to: '/product/issues/ownership-rules/',
@@ -2644,11 +2648,11 @@ const USER_DOCS_REDIRECTS: Redirect[] = [
26442648
},
26452649
{
26462650
from: '/product/issues/issue-details/suggested-fix/',
2647-
to: '/product/issues/issue-details/sentry-ai/',
2651+
to: '/product/issues/issue-details/seer/',
26482652
},
26492653
{
26502654
from: '/product/issues/issue-details/ai-suggested-solution/',
2651-
to: '/product/issues/issue-details/sentry-ai/',
2655+
to: '/product/issues/issue-details/seer/',
26522656
},
26532657
{
26542658
from: '/guides/grouping-and-fingerprints/',

0 commit comments

Comments
 (0)