Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

ContentBody{} FormattedBody{value='

This article describes how you can monitor the health of the Sign'Stash Proxy application.

...

Code Block
languagejson
{
  "status": "UP",
  "groups": [
    "checkliveness",
    "detailsreadiness"
  ]
}
  • /signstash/einvoice-integration-client-ws/actuator/health/check

    • Endpoint used to summarize the application's health status.

{ "status": "UP" }
Code Block
languagejson
  • /signstash/einvoice-integration-client-ws/actuator/health/details

    • The endpoint provides information on other indicators, such as database connection, disk space and ping.

Code Block
languagejson

{
  "status": "UP",
  "components": {
    "db": {
      "status": "UP",
      "details": {
        "database": "H2",
        "validationQuery": "isValid()"
      }
    },
    "diskSpace": {
      "status": "UP",
      "details": {
        "total": 9999999999999,
        "free": 99999999999,
        "threshold": 9999999,
        "path": "/.",
        "exists": true
      }
    },
    "ping": {
      "status": "UP"
    }
  }
}