Skip to content

Commit ea12f13

Browse files
authored
fix(mission-control): Move timeout before OOM for instrumentation demo (#98113)
1 parent 08e547a commit ea12f13

File tree

1 file changed

+27
-28
lines changed

1 file changed

+27
-28
lines changed

static/app/views/issueList/pages/missionControl.tsx

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,33 @@ const EXAMPLE_CARDS: MissionControlCard[] = [
7171
tags: ['error'],
7272
},
7373
},
74+
{
75+
id: '8',
76+
type: 'missing-instrumentation',
77+
createdAt: '2024-02-22T14:30:00Z',
78+
priority: 12,
79+
data: {
80+
purpose: 'Identify bottleneck in repo initialization and affected repositories.',
81+
observability_requests: [
82+
{
83+
description:
84+
'Pinpoint exact bottleneck (download, extract, clone, sync) and identify if large repos are the cause.',
85+
instrument_type: 'tracing',
86+
},
87+
{
88+
description:
89+
'Identify if specific repositories consistently cause timeouts, helping to narrow down the problem.',
90+
instrument_type: 'tagging',
91+
},
92+
],
93+
sourceIssueId: '6603629005',
94+
},
95+
url: '/issues/6603629005/?seerDrawer=true',
96+
metadata: {
97+
source: 'hardcoded-demo',
98+
tags: ['instrumentation', 'setup'],
99+
},
100+
},
74101
{
75102
id: '7',
76103
type: 'missing-instrumentation',
@@ -94,7 +121,6 @@ const EXAMPLE_CARDS: MissionControlCard[] = [
94121
tags: ['instrumentation', 'setup'],
95122
},
96123
},
97-
98124
{
99125
id: '9',
100126
type: 'ultragroup',
@@ -114,33 +140,6 @@ const EXAMPLE_CARDS: MissionControlCard[] = [
114140
tags: ['error-cluster', 'high-priority'],
115141
},
116142
},
117-
{
118-
id: '8',
119-
type: 'missing-instrumentation',
120-
createdAt: '2024-02-22T14:30:00Z',
121-
priority: 12,
122-
data: {
123-
purpose: 'Identify bottleneck in repo initialization and affected repositories.',
124-
observability_requests: [
125-
{
126-
description:
127-
'Pinpoint exact bottleneck (download, extract, clone, sync) and identify if large repos are the cause.',
128-
instrument_type: 'tracing',
129-
},
130-
{
131-
description:
132-
'Identify if specific repositories consistently cause timeouts, helping to narrow down the problem.',
133-
instrument_type: 'tagging',
134-
},
135-
],
136-
sourceIssueId: '6603629005',
137-
},
138-
url: '/issues/6603629005/?seerDrawer=true',
139-
metadata: {
140-
source: 'hardcoded-demo',
141-
tags: ['instrumentation', 'setup'],
142-
},
143-
},
144143
];
145144

146145
function MissionControl() {

0 commit comments

Comments
 (0)