Files
sablier/docs/health.md
2025-11-12 00:38:24 -05:00

633 B

Sablier Healthcheck

Using the /health Route

You can use the /health route to check for service health.

  • Returns 200 OK when ready
  • Returns 503 Service Unavailable when terminating

Using the sablier health Command

You can use the sablier health command to check for service health.

The sablier health command takes one argument, --url, which defaults to http://localhost:10000/health.

services:
  sablier:
    image: sablierapp/sablier:1.10.1
    healthcheck:
      test: ["sablier", "health"]
      interval: 1m30s