Skip to content

Commit 09c8e87

Browse files
committed
sentry ai renamed to seer and minor copy edits
1 parent d97b7fb commit 09c8e87

File tree

6 files changed

+20
-15
lines changed

6 files changed

+20
-15
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The header contains high-level information about the issue such as the error mes
1212

1313
Beneath the header is the event graph, showing a distribution of events and errors. You can use the search bar to filter which events are shown. Tags are shown and can be opened from here too.
1414

15-
The sidebar shows more about the issue and includes information such as the last time and the first time the issue was seen, if the issue is linked to any GitHub or Jira issues, issue activity and comments, participants and viewers, and Sentry AI features.
15+
The sidebar shows more about the issue and includes information such as the last time and the first time the issue was seen, if the issue is linked to any GitHub or Jira issues, issue activity and comments, participants and viewers, and Seer (Sentry's AI agent) features.
1616

1717
The main area of the page displays information about a specific event that's part of an issue, including the stack trace, breadcrumbs, tags, and more. You can also see information about replays, attachments, and feedback related to the issue here.
1818

@@ -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 [Sentry AI](/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/sentry-ai) 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

-305 KB
Loading
151 KB
Loading
-106 KB
Loading
120 KB
Loading

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

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
2-
title: Sentry AI
2+
title: Seer
33
description: "Learn about the AI features that help you understand and fix issues faster."
44
sidebar_order: 50
55
---
66

7-
Sentry AI is a set of tools that 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.
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.
88

9-
Once you've set up Sentry AI, you'll be able to use the following features:
9+
Once you've set up Seer, you'll be able to use the following features:
1010

1111
- [**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.
1212
- [**Autofix**](#autofix): A collaborative workflow to find the root cause of an error and create a PR that fixes it.
1313

1414
<Alert>
1515

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]. Sentry AI is not available for EU customers.
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.
1717

1818
</Alert>
1919

@@ -31,27 +31,31 @@ The Issue Summary provides a quick overview of an issue by highlighting key insi
3131

3232
</Alert>
3333

34-
**Autofix** uses the issue details, 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.
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.
3535

3636
When you start an Autofix run, you'll see the following screen, with an option to share any additional context:
3737

3838
![Autofix Start Screen](./img/autofix-start-screen.png)
3939

40-
Autofix will then analyze the issue and relevant code to help identify the root cause. You'll see the progress displayed at the bottom of the screen. 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.
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.
4141

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. To edit its reasoning, click the "Edit" button above any line to provide instructions or corrections, and Autofix will adjust its approach accordingly. If Autofix encounters gaps in its understanding, it will ask for your input.
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.
4343

44-
![Autofix Insights](./img/autofix-qna.png)
44+
The output will be a clearly defined root cause of the Sentry issue, and a detailed solution for how to resolve it:
4545

46-
When you’ve identified the root cause, or gathered enough information to propose your own solution, Autofix will use the same process to suggest a fix. It will present a diff of the proposed code changes. You can then:
46+
![Autofix Insights](./img/autofix-rootcause.png)
4747

48-
- Accept, reject, or edit the changes.
49-
- Provide feedback or ask Autofix to rethink its approach.
50-
- Request tests to ensure the issue doesn’t recur.
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
5153

5254
![Autofix Results](./img/autofix-results.png)
5355

54-
Once you're happy with the changes, Autofix can create a draft PR for you to review and merge in GitHub.
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)
5559

5660
## Data Processing
5761

@@ -63,6 +67,7 @@ The data used for these features includes:
6367
- Stack traces
6468
- Sentry spans
6569
- DOM interactions
70+
- Profiles
6671
- Relevant code from linked repositories
6772

6873
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).

0 commit comments

Comments
 (0)