Skip to content

Commit

Permalink
Sync documentation of main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 12, 2024
1 parent cddb840 commit 3e18a28
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 0 deletions.
19 changes: 19 additions & 0 deletions _generated-doc/main/config/quarkus-all-config.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58982,6 +58982,25 @@ endif::add-copy-button-to-env-var[]
|boolean
|`true`

a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-simple]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-simple[`quarkus.otel.simple`]##

[.description]
--
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.

Defaults to `false`.


ifdef::add-copy-button-to-env-var[]
Environment variable: env_var_with_copy_button:+++QUARKUS_OTEL_SIMPLE+++[]
endif::add-copy-button-to-env-var[]
ifndef::add-copy-button-to-env-var[]
Environment variable: `+++QUARKUS_OTEL_SIMPLE+++`
endif::add-copy-button-to-env-var[]
--
|boolean
|`false`

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`]##

[.description]
Expand Down
19 changes: 19 additions & 0 deletions _generated-doc/main/config/quarkus-opentelemetry.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,25 @@ endif::add-copy-button-to-env-var[]
|boolean
|`true`

a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-simple]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-simple[`quarkus.otel.simple`]##

[.description]
--
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.

Defaults to `false`.


ifdef::add-copy-button-to-env-var[]
Environment variable: env_var_with_copy_button:+++QUARKUS_OTEL_SIMPLE+++[]
endif::add-copy-button-to-env-var[]
ifndef::add-copy-button-to-env-var[]
Environment variable: `+++QUARKUS_OTEL_SIMPLE+++`
endif::add-copy-button-to-env-var[]
--
|boolean
|`false`

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`]##

[.description]
Expand Down
19 changes: 19 additions & 0 deletions _generated-doc/main/config/quarkus-opentelemetry_quarkus.otel.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,25 @@ endif::add-copy-button-to-env-var[]
|boolean
|`true`

a|icon:lock[title=Fixed at build time] [[quarkus-opentelemetry_quarkus-otel-simple]] [.property-path]##link:#quarkus-opentelemetry_quarkus-otel-simple[`quarkus.otel.simple`]##

[.description]
--
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.

Defaults to `false`.


ifdef::add-copy-button-to-env-var[]
Environment variable: env_var_with_copy_button:+++QUARKUS_OTEL_SIMPLE+++[]
endif::add-copy-button-to-env-var[]
ifndef::add-copy-button-to-env-var[]
Environment variable: `+++QUARKUS_OTEL_SIMPLE+++`
endif::add-copy-button-to-env-var[]
--
|boolean
|`false`

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`]##

[.description]
Expand Down
8 changes: 8 additions & 0 deletions _versions/main/guides/_includes/opentelemetry-config.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,11 @@ quarkus.otel.exporter.otlp.logs.endpoint=http://logs-uri:4317 // <3>
<1> The endpoint for the traces exporter.
<2> The endpoint for the metrics exporter.
<3> The endpoint for the logs exporter.

If you need that your spans and logs to be exported directly as they finish
(e.g. in a serverless environment / application), you can set this property to `true`.
This replaces the default batching of data.
[source,properties]
----
quarkus.otel.simple=true
----

0 comments on commit 3e18a28

Please sign in to comment.