Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
468 views
in Technique[技术] by (71.8m points)

ear - 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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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"
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...