feat(autopilot): POC UI for instrumentation issues#106359
Merged
ArthurKnaus merged 1 commit intomasterfrom Jan 15, 2026
Merged
Conversation
| @@ -106,6 +106,8 @@ export enum IssueCategory { | |||
| AI_DETECTED = 'ai_detected', | |||
|
|
|||
| PREPROD = 'preprod', | |||
Contributor
There was a problem hiding this comment.
Bug: The new IssueCategory.INSTRUMENTATION is not included in the VALID_ISSUE_CATEGORIES array, preventing its use in issue search filters and alert rules.
Severity: HIGH
Suggested Fix
Add IssueCategory.INSTRUMENTATION to the VALID_ISSUE_CATEGORIES array in static/app/types/group.tsx to make the category available for searching and alerting.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: static/app/types/group.tsx#L108
Potential issue: The `IssueCategory.INSTRUMENTATION` enum member is defined but has been
omitted from the `VALID_ISSUE_CATEGORIES` array in `static/app/types/group.tsx`. This
omission prevents the new "instrumentation" category from being used in key product
areas. Specifically, users will be unable to filter for instrumentation issues via the
issue search UI, as `SEARCHABLE_ISSUE_CATEGORIES` is derived from this array.
Additionally, it will be impossible to create alert rules that trigger on the
`INSTRUMENTATION` category, as the rule configuration UI validates against the same
array. This undermines the utility of the new instrumentation issue page.
Did we get this right? 👍 / 👎 to inform future reviews.
constantinius
approved these changes
Jan 15, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 a separate issues list for instrumentation issues using existing utils and components in the issues codebase.
Note: This UI implementation is experimental and minimalistic. It enables us to test autopilot use-cases end-to-end before refining the details.
All changes are guarded by the feature flag
organizations:seer-autopilot