Skip to content

Commit

Permalink
feat(components): add Health into observability-services-starter
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Nov 21, 2024
1 parent 09c6c6d commit 5596626
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,20 @@
## limitations under the License.
## ---------------------------------------------------------------------------

management.endpoints.web.exposure.include=prometheus
management.endpoints.web.exposure.include=health,prometheus
management.endpoints.web.base-path=/observe
management.endpoints.web.path-mapping.prometheus=metrics
# Opentelemetry
camel.opentelemetry.enabled=true
camel.opentelemetry.enabled=true
# Health
camel.health.exposure-level=full
management.health.probes.enabled=true
management.health.readinessState.enabled=true
management.health.livenessState.enabled=true
management.endpoint.health.show-details=always
# /observe/health/live remap
management.endpoint.health.group.live.include=livenessState,camelLivenessState
management.endpoint.health.group.live.show-details=always
# /observe/health/ready remap
management.endpoint.health.group.ready.include=readinessState,camelReadinessState
management.endpoint.health.group.ready.show-details=always

0 comments on commit 5596626

Please sign in to comment.