Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(metric-issues): Add detector details to sidebar #82972

Merged
merged 5 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions static/app/types/event.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,10 @@ export interface ThreadPoolInfoContext {
[ThreadPoolInfoContextKey.AVAILABLE_COMPLETION_PORT_THREADS]: number;
}

export type MetricAlertContextType = {
alert_rule_id?: string;
};

export enum ProfileContextKey {
PROFILE_ID = 'profile_id',
PROFILER_ID = 'profiler_id',
Expand Down Expand Up @@ -657,6 +661,7 @@ export type EventContexts = {
feedback?: Record<string, any>;
flags?: Flags;
memory_info?: MemoryInfoContext;
metric_alert?: MetricAlertContextType;
missing_instrumentation?: MissingInstrumentationContext;
os?: OSContext;
otel?: OtelContext;
Expand Down
1 change: 1 addition & 0 deletions static/app/utils/issueTypeConfig/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const BASE_CONFIG: IssueTypeConfig = {
},
attachments: {enabled: false},
autofix: false,
detectorDetails: {enabled: false},
events: {enabled: true},
mergedIssues: {enabled: false},
filterAndSearchHeader: {enabled: true},
Expand Down
1 change: 1 addition & 0 deletions static/app/utils/issueTypeConfig/metricIssueConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const metricIssueConfig: IssueCategoryConfigMapping = {
resolution: t('Back to baseline'),
},
attachments: {enabled: false},
detectorDetails: {enabled: true},
resources: null,
autofix: false,
events: {enabled: false},
Expand Down
4 changes: 4 additions & 0 deletions static/app/utils/issueTypeConfig/types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ export type IssueTypeConfig = {
customCopy: {
resolution: string;
};
/**
* Does the issue have detector data to show
*/
detectorDetails: DisabledWithReasonConfig;
/**
* Is the "Open in Discover" button available for this issue
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import {LinkButton} from 'sentry/components/button';
import {Flex} from 'sentry/components/container/flex';
import {t} from 'sentry/locale';
import type {Event} from 'sentry/types/event';
import useOrganization from 'sentry/utils/useOrganization';

export function MetricIssueSidebarSection({event}: {event?: Event}) {
const organization = useOrganization();
const alert_rule_id = event?.contexts?.metric_alert?.alert_rule_id;

if (!alert_rule_id) {
return null;
}

return (
<Flex>
<LinkButton
aria-label={t('View detector details')}
href={`/organizations/${organization.slug}/alerts/rules/details/${alert_rule_id}/`}
style={{width: '100%'}}
>
{t('View detector details')}
</LinkButton>
</Flex>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import StreamlinedActivitySection from 'sentry/views/issueDetails/streamline/sid
import {ExternalIssueList} from 'sentry/views/issueDetails/streamline/sidebar/externalIssueList';
import FirstLastSeenSection from 'sentry/views/issueDetails/streamline/sidebar/firstLastSeenSection';
import {MergedIssuesSidebarSection} from 'sentry/views/issueDetails/streamline/sidebar/mergedSidebarSection';
import {MetricIssueSidebarSection} from 'sentry/views/issueDetails/streamline/sidebar/metricIssueSidebarSection';
import PeopleSection from 'sentry/views/issueDetails/streamline/sidebar/peopleSection';
import {SimilarIssuesSidebarSection} from 'sentry/views/issueDetails/streamline/sidebar/similarIssuesSidebarSection';
import SolutionsSection from 'sentry/views/issueDetails/streamline/sidebar/solutionsSection';
Expand Down Expand Up @@ -89,6 +90,12 @@ export default function StreamlinedSidebar({group, event, project}: Props) {
<MergedIssuesSidebarSection />
</Fragment>
)}
{issueTypeConfig.detectorDetails.enabled && (
<Fragment>
<StyledBreak />
<MetricIssueSidebarSection event={event} />
</Fragment>
)}
</Side>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ describe('SolutionsSection', () => {
},
attachments: {enabled: false},
autofix: true,
detectorDetails: {enabled: false},
discover: {enabled: false},
events: {enabled: false},
evidence: null,
Expand Down
Loading