File size: 579 Bytes
def1299
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
## Workers [/workers]
### Workers [GET]
For each queue you will get:
- `queue` name
- queue `size`, i.e. number of submissions that are currently waiting to be processed
- `available` number of workers
- how many workers are `idle`
- how many workers are currently `working`
- how many workers are `paused`
- how many jobs `failed`

+ Response 200 (application/json)
    [
        {
            "queue": "default",
            "size": 0,
            "available": 1,
            "idle": 1,
            "working": 0,
            "paused": 0,
            "failed": 0
        }
    ]