Spaces:
Build error
Build error
## 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 | |
} | |
] |