chore: Add error monitoring solution question to bug report templates#5185
Open
chore: Add error monitoring solution question to bug report templates#5185
Conversation
…template Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…t template Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
Semver Impact of This PR🟢 Patch (bug fixes) 📋 Changelog PreviewThis is how your changes will appear in the changelog. This PR will not appear in the changelog. 🤖 This preview updates automatically when you update the PR. |
Sentry Build Distribution
|
markushi
commented
Mar 11, 2026
markushi
commented
Mar 11, 2026
markushi
commented
Mar 11, 2026
markushi
commented
Mar 11, 2026
markushi
commented
Mar 11, 2026
markushi
commented
Mar 11, 2026
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Sentry Build Distribution
|
Contributor
Performance metrics 🚀
|
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| ee747ae | 358.21 ms | 389.41 ms | 31.20 ms |
| 22f4345 | 325.23 ms | 454.66 ms | 129.43 ms |
| fcec2f2 | 328.91 ms | 387.75 ms | 58.84 ms |
| a416a65 | 333.78 ms | 410.37 ms | 76.59 ms |
| d15471f | 286.65 ms | 314.68 ms | 28.03 ms |
| 951caf7 | 323.66 ms | 392.82 ms | 69.16 ms |
| 17a0955 | 372.53 ms | 446.70 ms | 74.17 ms |
| 9fbb112 | 404.51 ms | 475.65 ms | 71.14 ms |
| dba088c | 333.98 ms | 381.16 ms | 47.18 ms |
| 3d205d0 | 352.15 ms | 432.53 ms | 80.38 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| ee747ae | 1.58 MiB | 2.10 MiB | 530.95 KiB |
| 22f4345 | 1.58 MiB | 2.29 MiB | 719.83 KiB |
| fcec2f2 | 1.58 MiB | 2.12 MiB | 551.50 KiB |
| a416a65 | 1.58 MiB | 2.12 MiB | 555.26 KiB |
| d15471f | 1.58 MiB | 2.13 MiB | 559.54 KiB |
| 951caf7 | 1.58 MiB | 2.13 MiB | 558.77 KiB |
| 17a0955 | 1.58 MiB | 2.10 MiB | 533.20 KiB |
| 9fbb112 | 1.58 MiB | 2.11 MiB | 539.18 KiB |
| dba088c | 1.58 MiB | 2.13 MiB | 558.99 KiB |
| 3d205d0 | 1.58 MiB | 2.10 MiB | 532.97 KiB |
Sentry Build Distribution
|
romtsn
approved these changes
Mar 11, 2026
Member
romtsn
left a comment
There was a problem hiding this comment.
LGTM, but i'm wondering if we could've listed top of the most known competitors here and let them select one of those or "None/Other"?
- Firebase Crashlytics
- Bugsnag
- Datadog
- NewRelic
- Instabug/Luciq
- Other (PostHog, Embrace, Bitdrift, Dynatrace, etc.)
- None
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix prepared fixes for both issues found in the latest run.
- ✅ Fixed: Inconsistent field ID naming across templates
- Renamed field ID from 'other_error_monitoring_solution' to 'other_error_monitoring' to match the Java template.
- ✅ Fixed: Android template lacks separate name input field
- Changed dropdown to Yes/No format and added separate 'other_error_monitoring_name' input field matching the Java template pattern.
Or push these changes by commenting:
@cursor push 625eb2d471
Preview (625eb2d471)
diff --git a/.github/ISSUE_TEMPLATE/bug_report_android.yml b/.github/ISSUE_TEMPLATE/bug_report_android.yml
--- a/.github/ISSUE_TEMPLATE/bug_report_android.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report_android.yml
@@ -56,22 +56,25 @@
required: true
- type: dropdown
- id: other_error_monitoring_solution
+ id: other_error_monitoring
attributes:
description: Are you using any other error monitoring solution alongside Sentry?
label: Other Error Monitoring Solution
options:
+ - "Yes"
- "No"
- - "Bugsnag"
- - "Datadog"
- - "Firebase Crashlytics"
- - "Instabug/Luciq"
- - "NewRelic"
- - "Other (please mention in issue description)"
validations:
required: true
- type: input
+ id: other_error_monitoring_name
+ attributes:
+ label: Other Error Monitoring Solution Name
+ description: If you're using another error monitoring solution side-by-side, please enter the name of the other solution.
+ validations:
+ required: false
+
+ - type: input
id: version
attributes:
label: VersionThis Bugbot Autofix run was free. To enable autofix for future PRs, go to the Cursor dashboard.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

📜 Description
Adds a new dropdown and optional input field to both the Android and Java bug report issue templates asking customers if they are using any other error monitoring solution alongside Sentry, and if so, which one.
💡 Motivation and Context
Other error monitoring SDKs can interfere with Sentry's error reporting. Knowing upfront whether a user has another solution installed helps triage bugs faster.
💚 How did you test it?
Reviewed the YAML templates manually.
📝 Checklist
sendDefaultPIIis enabled.🔮 Next steps
None.
#skip-changelog