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

Croway 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 8995385931ef chore: document Spring Boot installation for 
observability-services
8995385931ef is described below

commit 8995385931ef919eb23a1213e6223f6e3ff6a6fb
Author: Croway <[email protected]>
AuthorDate: Thu Jun 25 14:36:54 2026 +0200

    chore: document Spring Boot installation for observability-services
---
 .../src/main/docs/observability-services.adoc      | 24 +++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

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 1fdfa110ffcf..74707d287d8f 100644
--- 
a/components/camel-observability-services/src/main/docs/observability-services.adoc
+++ 
b/components/camel-observability-services/src/main/docs/observability-services.adoc
@@ -28,7 +28,9 @@ Camel Observability services unifies all the different types 
of observability, a
 
 === Installation
 
-All you need to do is to add the `camel-observability-services` dependency:
+==== Camel Main / Camel JBang
+
+Add the `camel-observability-services` dependency:
 
 ```xml
 <!-- 
https://mvnrepository.com/artifact/org.apache.camel/camel-observability-services
 -->
@@ -52,6 +54,26 @@ There's no need to add any further configuration.
 Each component will be configured using each own default setting,
 except the endpoint which will be exposed in `/observe/<service>` by default.
 
+==== Spring Boot
+
+Add the `camel-observability-services-starter` dependency:
+
+```xml
+<dependency>
+    <groupId>org.apache.camel.springboot</groupId>
+    <artifactId>camel-observability-services-starter</artifactId>
+</dependency>
+```
+
+The starter provides the same observability features but adapted to the Spring 
Boot runtime:
+
+* camel-health (via Spring Boot Actuator health indicators)
+* camel-management
+* camel-micrometer-starter + micrometer-registry-prometheus (via Spring Boot 
Actuator instead of camel-micrometer-prometheus)
+* camel-opentelemetry2-starter
+
+In Spring Boot, the metrics scrape endpoint is provided by Spring Boot 
Actuator and the Prometheus registry, not by `camel-micrometer-prometheus` 
which is designed for Camel Main's embedded management server. The starter's 
default configuration remaps the Actuator endpoints to the same `/observe/` 
paths, so the exposed endpoints remain the same.
+
 === Endpoints
 
 The presence of this dependency will expose the following endpoints:

Reply via email to