Get the service status
GET/
Get the service status
Responses
- 200
Successful response to the getSeviceStatus request
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
Version of the Conversion Service. Example: "1.11.0.7"
Possible values: [running
, warning
, error
]
The date and time when the service was started.
isolation
object
required
Number of isolated worker processes.
Number of pending tasks waiting for a free worker process.
jobCounts
object
required
Number of jobs that have not been started yet.
Number of jobs being processed or waiting in a tasks queue.
Number of completed jobs.
Total number of active jobs.
{
"version": "string",
"status": "running",
"startTime": "2024-07-08T13:50:58.897Z",
"isolation": {
"processCount": 0,
"queueLength": 0
},
"jobCounts": {
"creating": 0,
"processing": 0,
"completed": 0,
"total": 0
}
}
- Schema
- Example (from schema)
Schema
Version of the Conversion Service. Example: "1.11.0.7"
Possible values: [running
, warning
, error
]
The date and time when the service was started.
isolation
object
required
Number of isolated worker processes.
Number of pending tasks waiting for a free worker process.
jobCounts
object
required
Number of jobs that have not been started yet.
Number of jobs being processed or waiting in a tasks queue.
Number of completed jobs.
Total number of active jobs.
<root>
<version>string</version>
<status>running</status>
<startTime>2024-07-08T13:50:58.898Z</startTime>
<isolation>
<processCount>0</processCount>
<queueLength>0</queueLength>
</isolation>
<jobCounts>
<creating>0</creating>
<processing>0</processing>
<completed>0</completed>
<total>0</total>
</jobCounts>
</root>