Skip to content

Commit

Permalink
chore(components): observability services change default
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Nov 19, 2024
1 parent e348641 commit 96a0981
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ The Camel Observability Services component is used to run Camel standalone (Came

=== Auto-detection from classpath

All you need to do is to add the `camel-observability-services` dependency to the classpath. There's no need to add any further configuration. Each individual component will be configured using each own default settings except the endpoint which will be exposed in `/camel/<service>` by default.
All you need to do is to add the `camel-observability-services` dependency to the classpath. There's no need to add any further configuration. Each individual component will be configured using each own default settings except the endpoint which will be exposed in `/observe/<service>` by default.

If you need to customize each of the different components provided within this service, then, you can specify in the `application.properties` each of the configuration as it would be done normally when you provide the individual component.

WARNING: the customization of the configuration for this component is not available for Spring Boot runtime due to a https://github.com/spring-projects/spring-boot/issues/24688[known limitation]. You can use this component in Spring Boot runtime with the default settings only. If you need to provide any customization, you'll need to provide each component and configuration accordingly.
WARNING: the customization of the configuration for this component is not available for Spring Boot runtime due to a https://github.com/spring-projects/spring-boot/issues/24688[known limitation]. You can use this component in Spring Boot runtime with the default settings only. If you need to provide any customization, you'll need to configure each component separately.

== Components available

Expand All @@ -34,6 +34,6 @@ The presence of this dependency will expose the following endpoints:
|====
|Endpoint | Description

| `/camel/metrics` | metrics exposed as in Micrometer Prometheus Registry
| `/observe/metrics` | metrics exposed as in Micrometer Prometheus Registry

|====
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ camel.server.enabled=true
camel.server.metricsEnabled=true
camel.metrics.enabled=true
# Default metrics endpoint
camel.metrics.path=/camel/metrics
camel.metrics.path=/observe/metrics

0 comments on commit 96a0981

Please sign in to comment.