Skip to content

Commit e016642

Browse files
committed
changes as of 1/14/25
1 parent 9d0c25e commit e016642

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

sdk-extensions/incubator/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ dependencies {
6060
// it was needed after 0.3.0 release because file_format in the examples weren't updated prior to the release tag
6161
// val configurationTag = "0.3.0"
6262
// val configurationRef = "refs/tags/v$configurationTag" // Replace with commit SHA to point to experiment with a specific commit
63-
val configurationRef = "467989db8dc2778c0d057d61bd6a8db9035d9bff"
64-
val configurationRepoZip = "https://github.com/jack-berg/opentelemetry-configuration/archive/$configurationRef.zip"
63+
val configurationRef = "588a82d0c5d249c9ff807329fb0c887d17486b0f"
64+
val configurationRepoZip = "https://github.com/open-telemetry/opentelemetry-configuration/archive/$configurationRef.zip"
6565
val buildDirectory = layout.buildDirectory.asFile.get()
6666

6767
val downloadConfigurationSchema by tasks.registering(Download::class) {

sdk-extensions/incubator/src/test/java/io/opentelemetry/sdk/extension/incubator/fileconfig/FileConfigurationParseTest.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,10 @@ void parse_KitchenSinkExampleFile() throws IOException {
291291
new IncludeExcludeModel()
292292
.withIncluded(Collections.singletonList("service*"))
293293
.withExcluded(
294-
Collections.singletonList("service.attr1"))))))
295-
.withProducers(
296-
Collections.singletonList(
297-
new MetricProducerModel().withOpencensus(new OpencensusModel())));
294+
Collections.singletonList("service.attr1")))))
295+
.withProducers(
296+
Collections.singletonList(
297+
new MetricProducerModel().withOpencensus(new OpencensusModel()))));
298298
MetricReaderModel metricReader2 =
299299
new MetricReaderModel()
300300
.withPeriodic(
@@ -323,10 +323,10 @@ void parse_KitchenSinkExampleFile() throws IOException {
323323
.withDefaultHistogramAggregation(
324324
OtlpHttpMetricExporterModel
325325
.ExporterDefaultHistogramAggregation
326-
.BASE_2_EXPONENTIAL_BUCKET_HISTOGRAM))))
327-
.withProducers(
328-
Collections.singletonList(
329-
new MetricProducerModel().withAdditionalProperty("prometheus", null)));
326+
.BASE_2_EXPONENTIAL_BUCKET_HISTOGRAM)))
327+
.withProducers(
328+
Collections.singletonList(
329+
new MetricProducerModel().withAdditionalProperty("prometheus", null))));
330330
MetricReaderModel metricReader3 =
331331
new MetricReaderModel()
332332
.withPeriodic(

0 commit comments

Comments
 (0)