Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

Spring Boot Actuator

When the presence of the Spring Boot Actuator is detected, the application may benefit from metrics support auto-configuration (based on  Micrometer library). The instrumentation layer automatically (or programmatically) tracks the server-side metrics with respect to requests processing, and exposes it along with other metrics. For more details, please check Micrometer Integration documentation.

PropertyDescriptionDefault
cxf.metrics.enabledEnables or disables metrics auto-configurationtrue
cxf.metrics.jaxrs.enabledEnables or disables JAX-RS metrics auto-configurationtrue
cxf.metrics.jaxws.enabledEnables or disables JAX-WS metrics auto-configurationtrue
cxf.metrics.server.autoTimeRequests

Whether requests handled by CXF should be automatically timed.  If the number of time series emitted grows
too large on account of request mapping timings, set it to "false" and use @Timed or @TimeSet on a per
invocation basis as needed.

true
cxf.metrics.server.requestsMetricNameName of the metric for received requests (server-side)cxf.server.requests

Spring Boot CXF JAX-WS Starter

...