Interface QueueStateCount

    One bucket of the (queue, state) → count histogram returned by getStats.

    interface QueueStateCount {
        count: number;
        queue: string;
        state: string;
    }
    Index

    Properties

    Properties

    count: number
    queue: string
    state: string

    One of: "pending" | "running" | "completed" | "failed" | "scheduled" | "cancelled".