Monitoring
The Fonto Review backend provides a health endpoint which can be utilized to check the health of the service. Located at /api/health
, it returns information about the current product and its version.
Example response: /api/health (200 OK)
{
"application": {
"company": "Fonto",
"product": "Review",
"version": "7.8.0"
}
}
This endpoint is used to define a Docker HEALTHCHECK
instruction when running the Fonto Review backend in a Docker container.
When modifying the port the Fonto Review backend is running on within a (production) container, make sure to redefine the HEALTHCHECK
instruction to match the modified port.