Skip to content
Merged
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
55 changes: 27 additions & 28 deletions static/app/views/issueList/pages/missionControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -94,7 +121,6 @@ const EXAMPLE_CARDS: MissionControlCard[] = [
tags: ['instrumentation', 'setup'],
},
},

{
id: '9',
type: 'ultragroup',
Expand All @@ -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() {
Expand Down
Loading