Liveness

Health Liveliness

Unprotected endpoint for checking if worker is alive

GET/health/liveness
Authorization
Response

Successful Response

Body
any
Request
const response = await fetch('/health/liveness', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

Health Liveliness Options

Options endpoint for health/liveliness check.

OPTIONS/health/liveness
Authorization
Response

Successful Response

Body
any
Request
const response = await fetch('/health/liveness', {
    method: 'OPTIONS',
    headers: {},
});
const data = await response.json();