Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions frontend/snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7945,9 +7945,9 @@ snapshots:
scenes-app-settings-environment--settings-environment-error-tracking--light:
hash: v1.k794b7964.5ac167271f00184ce6159d0072ce163542658b08419f6e70b5cf6a6ca201a718.X6dKpM6uGw_g_FAwdQ5PukTVcKWGAa77bMOzgw-kiXY
scenes-app-settings-environment--settings-environment-error-tracking-configuration--dark:
hash: v1.k794b7964.033e5499811363c36dee07950ff09f33413e64b81c8522859c85748bc0443e3f.Hz66ItOfiG51KAAT2yidV4lINJmLINi-9_k81Ygdk80
hash: v1.k794b7964.3d7a3006130bdc66e1456cb81566e21bb2179f19d17caf91ead7a41ba4be9234.tbIKl_Tlb1T7RBNR3Ic9n51t6kNpTkGsw28sXZHW-Gs
scenes-app-settings-environment--settings-environment-error-tracking-configuration--light:
hash: v1.k794b7964.56f8265ff5de3733a4d00b0dbde7c0fff36ccdc886f713881134159802a13d39.9ArXuAkoxa6dyVQ_uspbjHWKM8YIgCPgCbDUnLHsxso
hash: v1.k794b7964.7d62fa47841096cceaa13c9a7cb15c1152b2f929ee030674bc0d97c5bc66c239.GptZ3dbdhoABnDP-dWhaqUCQOTeKYOsMFokkyWuNjwQ
scenes-app-settings-environment--settings-environment-feature-flags--dark:
hash: v1.k794b7964.56670f556ffac0360ec521741db9822f4e545e25b45bd8ed4ad012da8885c30a.qj9dLuAFy8v0TwEH-UTymXnlWPe2eu-YjAOpe2zc3Q8
scenes-app-settings-environment--settings-environment-feature-flags--light:
Expand Down
28 changes: 14 additions & 14 deletions frontend/src/scenes/settings/SettingsMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -563,13 +563,6 @@ export const SETTINGS_MAP: SettingSection[] = [
component: <ErrorTrackingAlerting />,
keywords: ['notification', 'alert', 'threshold', 'spike'],
},
{
id: 'error-tracking-suppression-rules',
title: 'Suppression rules',
description: 'Filter out exceptions that match the given filters.',
component: <SuppressionRules />,
keywords: ['filter', 'ignore', 'suppress', 'exception', 'type', 'message'],
},
{
id: 'error-tracking-spike-detection',
title: 'Spike detection',
Expand All @@ -584,10 +577,17 @@ export const SETTINGS_MAP: SettingSection[] = [
},
{
id: 'error-tracking-auto-assignment',
title: 'Auto assignment rules',
title: 'Assignment rules',
description: 'Automatically assign errors to team members based on rules you define.',
component: <AssignmentRules />,
keywords: ['assign', 'owner', 'team', 'rule', 'routing'],
keywords: ['assign', 'auto', 'owner', 'team', 'rule', 'routing'],
},
{
id: 'error-tracking-custom-grouping',
title: 'Grouping rules',
description: 'Define rules for how errors are grouped together into issues.',
component: <GroupingRules />,
keywords: ['group', 'custom', 'merge', 'fingerprint', 'dedup'],
},
{
id: 'error-tracking-severity-rules',
Expand All @@ -598,11 +598,11 @@ export const SETTINGS_MAP: SettingSection[] = [
keywords: ['severity', 'priority', 'triage', 'critical', 'rule'],
},
{
id: 'error-tracking-custom-grouping',
title: 'Custom grouping rules',
description: 'Define rules for how errors are grouped together into issues.',
component: <GroupingRules />,
keywords: ['group', 'merge', 'fingerprint', 'dedup'],
id: 'error-tracking-suppression-rules',
title: 'Suppression rules',
description: 'Filter out exceptions that match the given filters.',
component: <SuppressionRules />,
keywords: ['filter', 'ignore', 'suppress', 'exception', 'type', 'message'],
},
{
id: 'error-tracking-symbol-sets',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function ErrorTrackingConfigurationMovedBanner(): JSX.Element {
<LemonBanner type="info">
<p>
<strong>Error tracking configuration has moved.</strong> Configurations for alerting, suppression rules,
spike detection, auto assignment, custom grouping, symbol sets, and releases are now on the{' '}
spike detection, assignment rules, grouping rules, symbol sets, and releases are now on the{' '}
<Link to={urls.errorTrackingConfiguration()}>Error tracking configuration</Link> page.
</p>
<p>
Expand Down
Loading