This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 96a09812558 chore(components): observability services change default
96a09812558 is described below

commit 96a09812558d2d7f762307419f0d290b7c6e7672
Author: Pasquale Congiusti <pasquale.congiu...@gmail.com>
AuthorDate: Mon Nov 18 09:21:14 2024 +0100

    chore(components): observability services change default
---
 .../src/main/docs/observability-services.adoc                       | 6 +++---
 .../src/main/resources/observability-services.properties            | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-observability-services/src/main/docs/observability-services.adoc
 
b/components/camel-observability-services/src/main/docs/observability-services.adoc
index 94905c82551..21550139476 100644
--- 
a/components/camel-observability-services/src/main/docs/observability-services.adoc
+++ 
b/components/camel-observability-services/src/main/docs/observability-services.adoc
@@ -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
 
@@ -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
 
 |====
diff --git 
a/components/camel-observability-services/src/main/resources/observability-services.properties
 
b/components/camel-observability-services/src/main/resources/observability-services.properties
index 01a3c5a8139..69bca9cfa7d 100644
--- 
a/components/camel-observability-services/src/main/resources/observability-services.properties
+++ 
b/components/camel-observability-services/src/main/resources/observability-services.properties
@@ -18,4 +18,4 @@ camel.server.enabled=true
 camel.server.metricsEnabled=true
 camel.metrics.enabled=true
 # Default metrics endpoint
-camel.metrics.path=/camel/metrics
\ No newline at end of file
+camel.metrics.path=/observe/metrics

Reply via email to