This is an automated email from the ASF dual-hosted git repository.
zregvart 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 447aa09c2dd Fix heading sequence
447aa09c2dd is described below
commit 447aa09c2dd9c257833a1c40b1e1bcf938be565f
Author: Zoran Regvart <[email protected]>
AuthorDate: Tue Oct 29 11:10:04 2024 +0100
Fix heading sequence
The documentation build is failing with:
```
[build:antora ] [build:antora-perf] [03:32:09.362] WARN (asciidoctor):
section title out of sequence: expected level 2, got level 3
[build:antora ] [build:antora-perf] file:
docs/components/modules/others/pages/opentelemetry.adoc:84
[build:antora ] [build:antora-perf] source:
https://github.com/apache/camel.git (branch: main | start path: docs/components)
```
This fixes it.
---
components/camel-opentelemetry/src/main/docs/opentelemetry.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/camel-opentelemetry/src/main/docs/opentelemetry.adoc
b/components/camel-opentelemetry/src/main/docs/opentelemetry.adoc
index ab57c3ceadb..be701c9b0ba 100644
--- a/components/camel-opentelemetry/src/main/docs/opentelemetry.adoc
+++ b/components/camel-opentelemetry/src/main/docs/opentelemetry.adoc
@@ -81,7 +81,7 @@
https://docs.spring.io/spring-boot/reference/actuator/tracing.html[configured] t
*Noteworthy*: by default, Spring Boot samples only 10% of requests to prevent
overwhelming the trace backend.
Set the property `management.tracing.sampling.probability` to `1.0` if you
want to see all traces.
-==== SpanExporters
+=== SpanExporters
You'll probably want to configure at least one
https://opentelemetry.io/docs/languages/java/sdk/#spanexporter[SpanExporter]
as they allow you to export your traces to various backends (e.g Zipkin and
Jaeger) or log them. For example, to export your traces to Jaeger using OTLP
via gRPC,