Liveliness

Health Liveliness

Unprotected endpoint for checking if worker is alive

GET/health/liveliness
Authorization
Response

Successful Response

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

Health Liveliness Options

Options endpoint for health/liveliness check.

OPTIONS/health/liveliness
Authorization
Response

Successful Response

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