Uptime monitoring system for Ethora instances.
Each check can be marked as:
- critical: affects instance rollup status (failures can make the instance red, missing data can make it amber)
- optional: never affects instance rollup status (still recorded + visible)
In config you can set:
severity: critical | optional
By default, journey checks should be configured as optional.
docker compose up --buildOpen:
http://localhost:8099(dashboard)http://localhost:8099/api/summary(JSON)
/shows a wallboard view (per-instance rollup + critical checks)- Optional checks are under “Optional checks” (expandable)
- Journey checks have a Run button (manual regression run)
- Click any check name to open history:
/history.html#<checkId>
GET /api/summary: rollup view for UIGET /api/history?checkId=<id>&sinceMinutes=1440: time series points from DBPOST /api/run-checkwith{ "checkId": "instanceId:checkId" }: run a check now and record the result
The service reads a YAML config file (mounted into the container):
- Default path in Docker:
/config/uptime.yml - Example file:
config/uptime.example.yml
If you want a check to not be scheduled, set:
enabled: false
You can still run it from the UI “Run” button (or via POST /api/run-check).
Run the server continuously; it schedules each check by intervalSeconds and records results.
If you prefer running checks via cron:
- Build once:
npm run build - Run one tick and exit:
node dist/runOnce.js
- This project is intended to be used both as a standalone public repo and as a monoserver module (git submodule).