Skip to content

Commit d7d5ead

Browse files
author
Shannon Anahata
committed
Resolve merge conflicts: use master for .mdx files, keep branch version of docPage
1 parent 3ec3fb5 commit d7d5ead

File tree

3 files changed

+43
-26
lines changed

3 files changed

+43
-26
lines changed

docs/product/ai-in-sentry/ai-privacy-and-security/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: AI Privacy and Security
3-
sidebar_order: 30
3+
sidebar_order: 40
44
description: "Learn about how AI features in Sentry handle your data securely and protect your privacy."
55
---
66

docs/product/ai-in-sentry/index.mdx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,23 @@ Seer is Sentry's AI debugging agent that helps resolve errors and performance is
1414

1515
- **[Issue Fix](/product/ai-in-sentry/seer/issue-fix/)**: Automated root cause analysis and suggested code fixes, for errors and performance issues.
1616
- **Issue Scan**: Scans issues as they are ingested in Sentry to determine an actionability score and run Seer's issue fix on them automatically.
17-
- **[Privacy & Security](/product/ai-in-sentry/ai-privacy-and-security/)**: Understanding how Seer handles your data securely.
1817

19-
## Issue Summary
18+
### Issue Summary
2019

2120
**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.
2221

22+
### [Sentry Prevent AI](/product/ai-in-sentry/sentry-prevent-ai/)
23+
24+
Sentry Prevent AI is a generative AI assistant developed by Sentry, available in GitHub. It helps you generate new tests for uncovered code and reviews your code changes, offering suggestions for improvement before merging pull requests.
25+
2326
## Privacy and security
2427

2528
Sentry includes strong guarantees for privacy and security of your data. At a glance:
2629

2730
- Sentry does not train generative AI models using your data by default and without your permission.
2831
- AI-generated output is shown only to you and other authorized users in your account.
2932

30-
You can learn more about our data privacy practices [in the security and legal docs](/security-legal-pii/security/ai-ml-policy/#use-of-identifying-data-for-generative-ai-features).
33+
You can get more details at [AI Privacy and Security](/product/ai-in-sentry/ai-privacy-and-security/). To learn more about all our data privacy practices go to [the security and legal docs](/security-legal-pii/security/ai-ml-policy/#use-of-identifying-data-for-generative-ai-features).
3134

3235
## Disabling Generative AI Features
3336

Lines changed: 36 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,52 @@
11
---
22
title: Seer
33
description: "Learn about Seer, Sentry's AI agent, and managing generative AI features."
4-
sidebar_order: 21
4+
sidebar_order: 20
55
---
66

7-
Seer is Sentry's AI debugging agent. It includes a set of features, built on generative AI, that use Sentry's rich context (issue details, tracing data, logs, and profiles) to help you troubleshoot and fix errors and performance issues faster.
7+
Seer is Sentry's AI debugging agent. It uses Sentry's rich context (issue details, tracing data, logs, and profiles) to help you troubleshoot and fix errors and performance issues faster.
88

99
## Seer Capabilities
1010

11-
Seer provides two main capabilities to enhance your debugging:
11+
Seer provides three main capabilities to enhance your debugging:
1212

13-
- [**Issue fix**](#issue-fix): A collaborative workflow to find the root cause and solution of errors and performance issues.
14-
- **Issue scan**: Intelligently analyzes your issues and provides actionability scores to help you prioritize what to work on.
13+
- [**Issue fix**](#issue-fix): A collaborative agent skilled at root cause analysis and solving issues
14+
- [**Issue scan**](#issue-scan): Automatically scans issues as they come in, feeding additional context to your alerts and automating triage
15+
- [**Automation**](#automation): Combines issue fix and scan into a powerful workflow: identifying actionable issues in real time and generating high quality fixes, automatically
1516

1617
### Issue Fix
1718

18-
Issue fix uses AI to find the root cause of your apps' issues and suggest solutions. With issue fix, you can:
19+
Seer combines all of the relevant context from your code with Sentry's telemetry data to provide a best-in-class issue debugging experience. The workflow consists of three steps:
1920

20-
- Get an accurate root cause analysis, using Sentry's context and your codebases
21-
- Receive suggested code fixes and unit tests
22-
- Collaborate with Seer throughout the debugging process
23-
- Create pull requests directly from the Seer interface
21+
1. Root cause the issue using Sentry's context and your codebase
22+
2. Identify a solution based on the analysis
23+
3. Generate a code patch that implements the solution and open a PR
2424

25-
Learn more about [issue fix](./issue-fix/).
25+
For a full product walk-through, see [issue fix](./issue-fix/).
26+
27+
<VimeoEmbed id="1091964967?h=4f24769ccd" />
2628

2729
### Issue Scan
2830

29-
Issue scan intelligently analyzes your issues and helps you prioritize what to work on. With issue scan, you can:
31+
Seer is able to automatically analyze issues as they are ingested by Sentry. This initial review is used to:
32+
33+
- Generate an "actionability" score, which indicates how likely it is that a particular issue can be fixed with a code change
34+
- Augment issue alerts with a helpful analysis about the problem
35+
- Add an initial guess for what the potential problem is to the issue details page
36+
37+
The actionability score is represented in the issue feed by a Seer icon, which indicate issues that are likely straightforward fixes.
3038

31-
- View actionability scores that indicate how likely an issue is to be fixable with a code change, manually or with Seer's issue fix
32-
- Enable Seer's issue fix to be started automatically once an issue is ingested in Sentry
33-
- Filter issues by their latest scan results
34-
- See Seer labels in the issue stream for quick identification
35-
- Get insights into which issues need immediate attention
39+
### Automation
3640

37-
## How Seer Works
41+
You can use automation to trigger issue scans and fixes. There are three automation settings you can configure:
3842

39-
Seer leverages multiple data sources to provide accurate analysis and solutions:
43+
1. **Automate Issue Scans**: This enables Seer's issue scan functionality
44+
2. **Automate Issue Fixes**: This allows you to customize the degree of automation employed by Seer. For example, setting it to "Highly Actionable and Above" will automatically trigger issue fixes for all of your highly actionable Issues.
45+
3. **Stopping Point for Automatic Fixes**: Seer allows you to customize how far to go with automation. By default, it stops at the solution step, but you can choose to have it go all the way to code changes or even generate PRs automatically.
46+
47+
## What Seer Uses
48+
49+
Seer is a powerful debugging agent, with access to a wide variety of data sources and tools. While debugging issues, it may examine:
4050

4151
- **Issue Context**: Error messages, stack traces, and event metadata from your [Issues](/product/issues/)
4252
- **Tracing Data**: Distributed [traces](/concepts/key-terms/tracing/#whats-a-trace) and span information
@@ -49,9 +59,13 @@ Seer leverages multiple data sources to provide accurate analysis and solutions:
4959

5060
To start using Seer's capabilities:
5161

52-
1. **Enable Seer**: Make sure AI features are enabled in your [organization settings](https://sentry.io/orgredirect/organizations/:orgslug/settings/#hideAiFeatures)
62+
1. **Enable generative AI features**: Make sure AI features are enabled in your [organization settings](https://sentry.io/orgredirect/organizations/:orgslug/settings/#hideAiFeatures)
5363
2. **Set up GitHub Integration**: For issue fix capabilities, [connect your GitHub repositories](/organization/integrations/source-code-mgmt/github/)
54-
3. **Configure Settings**: Customize Seer's behavior in your project settings
64+
3. **Configure Settings**: Customize Seer's behavior in your project settings under `Seer Automation`. Seer is enabled by default using these settings:
65+
- **Automatic issue scans**: Enabled
66+
- **Automatic issue fixes**: Enabled for highly actionable issues and above
67+
68+
> **Note**: You can monitor your Seer usage in the [Stats & Usage tab](https://sentry.io/settings/stats/) and can learn more about managing your Seer budget [here](/pricing/quotas/manage-seer-budget/).
5569
4. **Start Using**: Look for Seer options in your issue details pages
5670

5771
## Privacy and security
@@ -61,4 +75,4 @@ Sentry includes strong guarantees for privacy and security of your data. At a gl
6175
- Sentry does not train generative AI models using your data by default and without your permission.
6276
- AI-generated output is shown only to you and other authorized users in your account.
6377

64-
You can learn more about our data privacy practices [in the security and legal docs](/security-legal-pii/security/ai-ml-policy/#use-of-identifying-data-for-generative-ai-features).
78+
You can learn more about our data privacy practices [in the security and legal docs](/security-legal-pii/security/ai-ml-policy/#use-of-identifying-data-for-generative-ai-features).

0 commit comments

Comments
 (0)