Files
goma-gateway/docs/quickstart/healthcheck.md
2024-11-10 08:15:47 +01:00

818 B

title, layout, parent, nav_order
title layout parent nav_order
Healthcheck default Quickstart 5

Healthcheck

Goma comes with routes healthcheck, that can be enabled and disabled.

  • Goma Gateway healthcheck: /health/live
  • Routes health check: health/routes

Gateway healthcheck response:

{
  "name": "Service Gateway",
  "status": "healthy",
  "error": ""
}

Routes healthcheck response:

{
  "status": "healthy",
  "routes": [
    {
      "name": "order-service",
      "status": "healthy",
      "error": ""
    },
    {
      "name": "notification-service",
      "status": "healthy",
      "error": ""
    },
    {
      "name": "store-service",
      "status": "healthy",
      "error": ""
    },
    {
      "name": "account-service",
      "status": "healthy",
      "error": ""
    }
  ]
}