You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Concurrency: 'are going' → 'are executing', drop the redundant 'color' from the two parenthetical swatches. Queue depth: drop the trailing swatch. Scheduling delay: cut the p50/p95/p99 breakdown. Throughput: parentheticals become ({swatch} Enqueued) / ({swatch} Started).
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues_.$queueParam/route.tsx
+6-17Lines changed: 6 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -382,8 +382,8 @@ function OverviewCharts({
382
382
title="Concurrency"
383
383
info={
384
384
<>
385
-
How many runs are going at once (<ColorSwatchcolor={COLORS.running}/> color) versus
386
-
the queue's limit (<ColorSwatchcolor={COLORS.limit}/> color). Turns{" "}
385
+
How many runs are executing at once (<ColorSwatchcolor={COLORS.running}/>) versus
386
+
the queue's limit (<ColorSwatchcolor={COLORS.limit}/>). Turns{" "}
387
387
<ColorSwatchcolor="var(--color-warning)"/> color when it reaches the limit.
388
388
</>
389
389
}
@@ -413,12 +413,7 @@ function OverviewCharts({
413
413
/>
414
414
<QueueDetailChartCard
415
415
title="Queue depth"
416
-
info={
417
-
<>
418
-
How many runs are waiting in this queue over time (
419
-
<ColorSwatchcolor={COLORS.queued}/> color).
420
-
</>
421
-
}
416
+
info="How many runs are waiting in this queue over time."
422
417
className="aspect-[2/1]"
423
418
query={`SELECT timeBucket() AS t, max(max_queued) AS queued\nFROM queue_metrics\nGROUP BY t\nORDER BY t`}
424
419
fillGaps
@@ -431,8 +426,8 @@ function OverviewCharts({
431
426
title="Throughput"
432
427
info={
433
428
<>
434
-
Runs arriving (Enqueued, <ColorSwatchcolor={COLORS.limit}/>color) versus starting
<ColorSwatchcolor="var(--color-warning)"/> color when Started falls behind.
437
432
</>
438
433
}
@@ -453,13 +448,7 @@ function OverviewCharts({
453
448
/>
454
449
<QueueDetailChartCard
455
450
title="Scheduling delay"
456
-
info={
457
-
<>
458
-
How long runs wait before they start: p50 (<ColorSwatchcolor={COLORS.p50}/> color),
459
-
p95 (<ColorSwatchcolor={COLORS.p95}/> color), and p99 (
460
-
<ColorSwatchcolor={COLORS.p99}/> color).
461
-
</>
462
-
}
451
+
info="How long runs wait before they start."
463
452
showLegend
464
453
className="aspect-[2/1]"
465
454
query={`SELECT timeBucket() AS t,\n round(quantilesMerge(0.5, 0.9, 0.95, 0.99)(wait_quantiles)[1]) AS p50,\n round(quantilesMerge(0.5, 0.9, 0.95, 0.99)(wait_quantiles)[3]) AS p95,\n round(quantilesMerge(0.5, 0.9, 0.95, 0.99)(wait_quantiles)[4]) AS p99\nFROM queue_metrics\nGROUP BY t\nORDER BY t`}
0 commit comments