简体   繁体   中英

Implementing microprofile health checks with EJB application

I have a EJB application (Ear) deployed on open liberty in kubernetes environment.

I am trying to implement health checks (liveliness and readiness) using the microprofile health feature supported by liberty ( https://openliberty.io/docs/20.0.0.12/health-check-microservices.html ).

Do I need to have seperate web application deployed or just implementing the health check classes in EJB module (without web module) works.

It depends what you want to do. You can just add classes implementing livness/readiness to your existing web module or you can create separate one, that will just have various checks.

The best practice would be to have checks in the same module that is providing the service, in case you would later want to separate these services into different containers.

In Liberty checks from all web modules are aggregated and calculated together, so if you have multiple checks you may see something like this:

{
"checks":[
  {
     "data":{},
     "name":"myejb-bean",
     "status":"DOWN"
  },
  {
    "data":{},
    "name":"service1",
    "status":"UP"
    }],
"status":"DOWN"
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM