Routzie - documentation

Healthcheck Setup

To set up a healthcheck, you need to create a dedicated endpoint—most commonly GET /health—which should return a 200 OK response if everything is working correctly. This is a standard convention for service monitoring.

Next, go to the Healthchecks settings section in your account, select your machine, and enter the URL of your healthcheck endpoint (e.g. /health). If you configure your email, you will receive notifications whenever the status of your machine changes.

Example endpoint implementation

import { route, RouteResult, ProcessedRequest } from 'router' route(['GET'], 'health', async function(req: ProcessedRequest) { return new RouteResult({ status: 'ok' }, 200, { timestamp: Date.now(), }) })

© 2025 Routzie Routzie.com