QueueCounts
No description
type QueueCounts {
waiting: Int!
active: Int!
delayed: Int!
}
Fields
QueueCounts.waiting ● Int! non-null scalar
waiting is the number of jobs that are in line to be processed.
QueueCounts.active ● Int! non-null scalar
active is the number of jobs that are being actively processed.
QueueCounts.delayed ● Int! non-null scalar
delayed is the number of jobs that have been delayed due to a failure and are waiting for a backoff.
Member Of
Queue object