Skip to content

QueueStatsDtoSchema

const QueueStatsDtoSchema: ZodObject<{
  avgProcessingDurationMs: ZodOptional<ZodNumber>;
  cancelled: ZodNumber;
  completed: ZodNumber;
  failed: ZodNumber;
  pending: ZodNumber;
  processing: ZodNumber;
  total: ZodNumber;
}, $strict>;

Defined in: schemas/queue-view.ts:4

Aggregated job counts and timing statistics for a queue or the whole scheduler.