Skip to content

Health Monitoring

Tracee can expose a /healthz endpoint that returns OK if the everything is healthy. This is a common pattern in Cloud Native and Kubernetes applications.

Health monitoring endpoint is disabled by default, and can be enabled with the configuration:

server:
  healthz: true

By default port 3366 is used. It can be customized with the configuration:

server:
  http-address: :1234
  healthz: true