[]
Get queue monitor statistical.
Responses
[200] Success
Type: [application/json]
[400] Bad Request
Type: [application/json]
Represent a queue statistical response model.
| Name | Type | Description |
|---|---|---|
| workersNullable | Array<WorkerInfoViewModel> |
Get or set worker info list. |
| tasksNullable | Array<CommonTaskInfo> |
Get or set task info list. |
Represent a worker information model.
| Name | Type | Description |
|---|---|---|
| idNullable | string | Get or set the worker ID. |
| urlNullable | string | Get or set the worker URL. |
| lastSeen | ISO DateTime Sting | Get or set the last seen time of the worker. |
| tasksInProgress | int32 | Get or set the number of tasks in progress by the worker. |
| displayNameNullable | string | Get or set the display name of the worker. |
| specializationsNullable | Array<string> |
Get or set the specializations of the worker. |
Represent a common task info response model.
| Name | Type | Description |
|---|---|---|
| taskID | TaskIDViewModel | |
| workerUrlNullable | string | Get or set worker url. |
| workerIDNullable | string | Get or set worker id. |
| initiatorNullable | string | Get or set task initiator. |
| documentNameNullable | string | Get or set document name. |
| displayDocNameNullable | string | Get or set display name. |
| documentIdNullable | string | Get or set document id. |
| documentTypeNullable | string | Get or set document type. |
| startTime | ISO DateTime Sting | Get or set task start time. |
| endTimeNullable | ISO DateTime Sting | Get or set task end time. |
| progressNullable | string | Get or set task progress. |
| errorMessageNullable | string | Get or set task error message. |
| descriptionNullable | string | Get or set task description. |
| breakStatus | CommonTaskInfo+TaskStatus | |
| status | CommonTaskInfo+TaskStatus | |
| type | CommonTaskInfo+TaskType |
Represent a task ID view model.
| Name | Type | Description |
|---|---|---|
| idNullable | string | Get or set the task ID. |
| parent | TaskIDViewModel |
Enum:
NotStarted
WaitingForActivation
WaitingToRun
Started
ReadingResult
Verifying
Canceled
Failed
Finished
Enumeration of task status
* NotStarted - 0 - Not started.
* WaitingForActivation - 1 - Waiting for activation.
* WaitingToRun - 2 - Waiting to run.
* Started - 3 - Started.
* ReadingResult - 4 - Reading result.
* Verifying - 5 - Verifying.
* Canceled - 6 - Canceled.
* Failed - 7 - Failed.
* Finished - 8 - Finished.
Enum:
Queue
Scheduler
Enumeration of task types.
* Queue - 0 - Queue task.
* Scheduler - 1 - Scheduler task.
Server plugin error
| Name | Type | Description |
|---|---|---|
| codeNullable | string | error code |
| messageNullable | string | error message |
| contextNullable | string | error context |
| innerError | ServerPluginError | |
| extensionsNullable | any | Extended result |