From 24e7092aa858ea663727d5f505cce516f8427680 Mon Sep 17 00:00:00 2001 From: Kush Dubey Date: Thu, 21 Aug 2025 12:05:40 -0700 Subject: [PATCH] fix(mission-control): Move timeout before OOM for instrumentation demo --- .../views/issueList/pages/missionControl.tsx | 55 +++++++++---------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/static/app/views/issueList/pages/missionControl.tsx b/static/app/views/issueList/pages/missionControl.tsx index 9a70b404de3421..f1c8b4a45f3266 100644 --- a/static/app/views/issueList/pages/missionControl.tsx +++ b/static/app/views/issueList/pages/missionControl.tsx @@ -71,6 +71,33 @@ const EXAMPLE_CARDS: MissionControlCard[] = [ tags: ['error'], }, }, + { + id: '8', + type: 'missing-instrumentation', + createdAt: '2024-02-22T14:30:00Z', + priority: 12, + data: { + purpose: 'Identify bottleneck in repo initialization and affected repositories.', + observability_requests: [ + { + description: + 'Pinpoint exact bottleneck (download, extract, clone, sync) and identify if large repos are the cause.', + instrument_type: 'tracing', + }, + { + description: + 'Identify if specific repositories consistently cause timeouts, helping to narrow down the problem.', + instrument_type: 'tagging', + }, + ], + sourceIssueId: '6603629005', + }, + url: '/issues/6603629005/?seerDrawer=true', + metadata: { + source: 'hardcoded-demo', + tags: ['instrumentation', 'setup'], + }, + }, { id: '7', type: 'missing-instrumentation', @@ -94,7 +121,6 @@ const EXAMPLE_CARDS: MissionControlCard[] = [ tags: ['instrumentation', 'setup'], }, }, - { id: '9', type: 'ultragroup', @@ -114,33 +140,6 @@ const EXAMPLE_CARDS: MissionControlCard[] = [ tags: ['error-cluster', 'high-priority'], }, }, - { - id: '8', - type: 'missing-instrumentation', - createdAt: '2024-02-22T14:30:00Z', - priority: 12, - data: { - purpose: 'Identify bottleneck in repo initialization and affected repositories.', - observability_requests: [ - { - description: - 'Pinpoint exact bottleneck (download, extract, clone, sync) and identify if large repos are the cause.', - instrument_type: 'tracing', - }, - { - description: - 'Identify if specific repositories consistently cause timeouts, helping to narrow down the problem.', - instrument_type: 'tagging', - }, - ], - sourceIssueId: '6603629005', - }, - url: '/issues/6603629005/?seerDrawer=true', - metadata: { - source: 'hardcoded-demo', - tags: ['instrumentation', 'setup'], - }, - }, ]; function MissionControl() {