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
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues_.$queueParam/route.tsx
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1121,7 +1121,7 @@ function QueueStats({
1121
1121
// Latest gauges from ClickHouse, polled every 15s so the live blocks keep ticking after first
1122
1122
// paint. Read the newest bucket (largest t); until the first poll lands liveRows is empty and the
1123
1123
// *Live values stay null, so the blocks show the loader values instead of flashing 0.
`SELECT timeBucket() AS t, max(max_running) AS running, max(max_queued) AS queued, max(max_limit) AS q_limit, max(max_ck_wait_ms) AS ck_wait FROM queue_metrics GROUP BY t ORDER BY t`,
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx
`SELECT timeBucket() AS t, max(max_running) AS running, max(max_queued) AS queued, max(max_limit) AS q_limit\nFROM queue_metrics\nGROUP BY t\nORDER BY t`,
1300
1311
{
1301
1312
ids: waiting.ids,
@@ -1307,8 +1318,9 @@ function WaitingInQueueBlock({
0 commit comments