Skip to content

Commit

Permalink
Fix default values in microprofile-config.properties (#383)
Browse files Browse the repository at this point in the history
Various config readers (notably, `AbstractVertxExporterProvider`) read
config values in a case sensitive manner. All the OpenTelemetry config
values are supposed to be lower-case, so this commit changes the default
values in `microprofile-config.properties` to also be lower-case.
  • Loading branch information
Ladicek authored Oct 2, 2024
1 parent 926ed4c commit 91f4543
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ otel.exporter.otlp.protocol=grpc
otel.exporter.otlp.endpoint=http://localhost:4317
otel.exporter.otlp.compression=gzip
otel.exporter.otlp.timeout=10000
otel.exporter.otlp.metrics.temporality.preference=CUMULATIVE
otel.exporter.otlp.metrics.default.histogram.aggregation=EXPLICIT_BUCKET_HISTOGRAM
otel.metrics.exemplar.filter=TRACE_BASED
otel.exporter.otlp.metrics.temporality.preference=cumulative
otel.exporter.otlp.metrics.default.histogram.aggregation=explicit_bucket_histogram
otel.metrics.exemplar.filter=trace_based

otel.blrp.schedule.delay=1000
otel.blrp.max.queue.size=512
Expand Down

0 comments on commit 91f4543

Please sign in to comment.