Load balancer health check

Hello,

Is there an endpoint for health check out of the box?
I would like to use it for docker/k8s readiness probe

Cheers,
Ro

You could always write your own endpoint. We have a page at /bin/view/Main/Healthcheck?xpage=plain, which returns simply the text pong.

However we just check if the status is 200

livenessProbe:
  httpGet:
    path: bin/view/Main/Healthcheck?xpage=plain
    port: 8080tcp01
    failureThreshold: 3
    periodSeconds: 60
startupProbe:
  httpGet:
    path: bin/view/Main/Healthcheck?xpage=plain
    port: 8080tcp01
    failureThreshold: 30
    periodSeconds: 30