Skip to content

Commit 3e18a28

Browse files
committed
Sync documentation of main branch
1 parent cddb840 commit 3e18a28

File tree

4 files changed

+65
-0
lines changed

4 files changed

+65
-0
lines changed

_generated-doc/main/config/quarkus-all-config.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58982,6 +58982,25 @@ endif::add-copy-button-to-env-var[]
5898258982
|boolean
5898358983
|`true`
5898458984

58985+
a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-simple]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-simple[`quarkus.otel.simple`]##
58986+
58987+
[.description]
58988+
--
58989+
Should we use simple processor for spans and log records. This will disable batch processing and the exporter will send telemetry data right away. This is recommended for serverless applications.
58990+
58991+
Defaults to `false`.
58992+
58993+
58994+
ifdef::add-copy-button-to-env-var[]
58995+
Environment variable: env_var_with_copy_button:+++QUARKUS_OTEL_SIMPLE+++[]
58996+
endif::add-copy-button-to-env-var[]
58997+
ifndef::add-copy-button-to-env-var[]
58998+
Environment variable: `+++QUARKUS_OTEL_SIMPLE+++`
58999+
endif::add-copy-button-to-env-var[]
59000+
--
59001+
|boolean
59002+
|`false`
59003+
5898559004
a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-traces-exporter]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-traces-exporter[`quarkus.otel.traces.exporter`]##
5898659005

5898759006
[.description]

_generated-doc/main/config/quarkus-opentelemetry.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,25 @@ endif::add-copy-button-to-env-var[]
2828
|boolean
2929
|`true`
3030

31+
a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-simple]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-simple[`quarkus.otel.simple`]##
32+
33+
[.description]
34+
--
35+
Should we use simple processor for spans and log records. This will disable batch processing and the exporter will send telemetry data right away. This is recommended for serverless applications.
36+
37+
Defaults to `false`.
38+
39+
40+
ifdef::add-copy-button-to-env-var[]
41+
Environment variable: env_var_with_copy_button:+++QUARKUS_OTEL_SIMPLE+++[]
42+
endif::add-copy-button-to-env-var[]
43+
ifndef::add-copy-button-to-env-var[]
44+
Environment variable: `+++QUARKUS_OTEL_SIMPLE+++`
45+
endif::add-copy-button-to-env-var[]
46+
--
47+
|boolean
48+
|`false`
49+
3150
a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-traces-exporter]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-traces-exporter[`quarkus.otel.traces.exporter`]##
3251

3352
[.description]

_generated-doc/main/config/quarkus-opentelemetry_quarkus.otel.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,25 @@ endif::add-copy-button-to-env-var[]
2828
|boolean
2929
|`true`
3030

31+
a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-simple]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-simple[`quarkus.otel.simple`]##
32+
33+
[.description]
34+
--
35+
Should we use simple processor for spans and log records. This will disable batch processing and the exporter will send telemetry data right away. This is recommended for serverless applications.
36+
37+
Defaults to `false`.
38+
39+
40+
ifdef::add-copy-button-to-env-var[]
41+
Environment variable: env_var_with_copy_button:+++QUARKUS_OTEL_SIMPLE+++[]
42+
endif::add-copy-button-to-env-var[]
43+
ifndef::add-copy-button-to-env-var[]
44+
Environment variable: `+++QUARKUS_OTEL_SIMPLE+++`
45+
endif::add-copy-button-to-env-var[]
46+
--
47+
|boolean
48+
|`false`
49+
3150
a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-traces-exporter]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-traces-exporter[`quarkus.otel.traces.exporter`]##
3251

3352
[.description]

_versions/main/guides/_includes/opentelemetry-config.adoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,11 @@ quarkus.otel.exporter.otlp.logs.endpoint=http://logs-uri:4317 // <3>
3434
<1> The endpoint for the traces exporter.
3535
<2> The endpoint for the metrics exporter.
3636
<3> The endpoint for the logs exporter.
37+
38+
If you need that your spans and logs to be exported directly as they finish
39+
(e.g. in a serverless environment / application), you can set this property to `true`.
40+
This replaces the default batching of data.
41+
[source,properties]
42+
----
43+
quarkus.otel.simple=true
44+
----

0 commit comments

Comments
 (0)