Skip to content

Observability

Dirigible exposes two standard JVM observability surfaces:

Spring Boot Admin

A web console aggregating Spring Boot Actuator data from one or more JVMs.

  • URL: /spring-admin/
  • The server profile is enabled by default - the runtime is its own Admin server.
  • Inspect bean wiring, environment, mappings, metrics, log levels, scheduled tasks.

For multi-instance deployments point the additional pods at a single Admin server via the Boot Admin Client.

Actuator endpoints

EndpointPurpose
/actuator/health/readinessReadiness probe - the JVM has finished startup.
/actuator/health/livenessLiveness probe - the JVM is still alive.
/actuator/infoBuild metadata.
/actuator/metricsMicrometer metric registry contents.
/actuator/loggersLive logger levels (also reachable from the Logs view).

Probes are what CI's DAST job polls and what Kubernetes liveness / readiness probes hit.

In-IDE views

The browser IDE surfaces several of these signals natively:

See also

Released under the EPL-2.0 License.