feat(low-value-spans): Add low-value span issue UI#115870
Merged
Merged
Conversation
Add frontend type plumbing and a simple configuration issue details view for low-value span findings. Gate the Sentry Configuration taxonomy behind either the source-map or low-value span visibility flag so the shared page can appear during separate rollouts. Refs TET-2198 Co-Authored-By: Codex <noreply@example.com>
Contributor
📊 Type Coverage Diff✅ No new type safety issues introduced. Coverage: 93.56% |
ArthurKnaus
commented
May 20, 2026
Comment on lines
+15
to
+23
| export function LowValueSpanIssueDetails(_props: LowValueSpanIssueDetailsProps) { | ||
| return ( | ||
| <div> | ||
| <ProblemSection /> | ||
| <SectionDivider orientation="horizontal" /> | ||
| <TroubleshootingSection /> | ||
| </div> | ||
| ); | ||
| } |
Member
Author
There was a problem hiding this comment.
All the content is pure 🤖 output to provide a skeleton. Will heavily rework the sections.
Keep the Sentry Configuration feature flag list local to the taxonomy module so knip does not report it as an unused export. Refs TET-2198 Co-Authored-By: Codex <noreply@example.com>
matejminar
approved these changes
May 20, 2026
JonasBa
pushed a commit
that referenced
this pull request
May 21, 2026
Add frontend support for low-value span configuration issues once the backend group type is available. **Configuration Issue UI** The new issue type maps to "AI Detected Low-Value Span" and gets a simple details view that follows the existing source-map configuration issue layout. **Feature Gating** The shared Sentry Configuration taxonomy now appears when either the source-map configuration flag or the low-value span configuration flag is enabled, including navigation and Command Palette entries. **Note:** ATM no low-value span feature flag is enabled. This is just code scaffolding and not yet visible to anyone. Depends on #115868 Refs TET-2198 --------- Co-authored-by: Codex <noreply@example.com>
3 tasks
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.
Add frontend support for low-value span configuration issues once the backend group type is available.
Configuration Issue UI
The new issue type maps to "AI Detected Low-Value Span" and gets a simple details view that follows the existing source-map configuration issue layout.
Feature Gating
The shared Sentry Configuration taxonomy now appears when either the source-map configuration flag or the low-value span configuration flag is enabled, including navigation and Command Palette entries.
Note: ATM no low-value span feature flag is enabled. This is just code scaffolding and not yet visible to anyone.
Depends on #115868
Refs TET-2198