File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed
api/incubator/src/test/java/io/opentelemetry/api/incubator/config
autoconfigure/src/testIncubating/java/io/opentelemetry/sdk/autoconfigure
incubator/src/main/java/io/opentelemetry/sdk/extension/incubator/fileconfig Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class InstrumentationConfigUtilTest {
2424 * href="https://github.com/open-telemetry/opentelemetry-configuration/blob/main/examples/kitchen-sink.yaml">kitchen-sink.yaml</a>.
2525 */
2626 private static final String kitchenSinkInstrumentationConfig =
27- "instrumentation:\n "
27+ "instrumentation/development :\n "
2828 + " general:\n "
2929 + " peer:\n "
3030 + " service_mapping:\n "
@@ -54,11 +54,11 @@ class InstrumentationConfigUtilTest {
5454 private static final ConfigProvider kitchenSinkConfigProvider =
5555 toConfigProvider (kitchenSinkInstrumentationConfig );
5656 private static final ConfigProvider emptyInstrumentationConfigProvider =
57- toConfigProvider ("instrumentation:\n " );
57+ toConfigProvider ("instrumentation/development :\n " );
5858 private static final ConfigProvider emptyGeneralConfigProvider =
59- toConfigProvider ("instrumentation:\n general:\n " );
59+ toConfigProvider ("instrumentation/development :\n general:\n " );
6060 private static final ConfigProvider emptyHttpConfigProvider =
61- toConfigProvider ("instrumentation:\n general:\n http:\n " );
61+ toConfigProvider ("instrumentation/development :\n general:\n http:\n " );
6262
6363 private static ConfigProvider toConfigProvider (String configYaml ) {
6464 OpenTelemetryConfigurationModel configuration =
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ dependencies {
5454 implementation(" com.google.auto.value:auto-value-annotations:1.11.0" )
5555 // When updating, update above in plugins too
5656 implementation(" com.diffplug.spotless:spotless-plugin-gradle:7.0.3" )
57- implementation(" com.gradle.develocity:com.gradle.develocity.gradle.plugin:4.0.1 " )
57+ implementation(" com.gradle.develocity:com.gradle.develocity.gradle.plugin:4.0.2 " )
5858 implementation(" com.squareup:javapoet:1.13.0" )
5959 implementation(" com.squareup.wire:wire-compiler" )
6060 implementation(" com.squareup.wire:wire-gradle-plugin" )
Original file line number Diff line number Diff line change 4242
4343checkstyle {
4444 configDirectory.set(file(" $rootDir /buildscripts/" ))
45- toolVersion = " 10.23.1 "
45+ toolVersion = " 10.24.0 "
4646 isIgnoreFailures = false
4747 configProperties[" rootDir" ] = rootDir
4848}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionSha256Sum =61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+ distributionSha256Sum =845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.1 -bin.zip
55networkTimeout =10000
66validateDistributionUrl =true
77zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ void setup() throws IOException {
7272 + " - simple:\n "
7373 + " exporter:\n "
7474 + " console: {}\n "
75- + "instrumentation:\n "
75+ + "instrumentation/development :\n "
7676 + " general:\n "
7777 + " http:\n "
7878 + " client:\n "
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public final class SdkConfigProvider implements ConfigProvider {
1818 private SdkConfigProvider (OpenTelemetryConfigurationModel model ) {
1919 DeclarativeConfigProperties configProperties =
2020 DeclarativeConfiguration .toConfigProperties (model );
21- this .instrumentationConfig = configProperties .getStructured ("instrumentation" );
21+ this .instrumentationConfig = configProperties .getStructured ("instrumentation/development " );
2222 }
2323
2424 /**
Original file line number Diff line number Diff line change 11pluginManagement {
22 plugins {
33 id(" com.gradleup.shadow" ) version " 8.3.6"
4- id(" com.gradle.develocity" ) version " 4.0.1 "
4+ id(" com.gradle.develocity" ) version " 4.0.2 "
55 id(" de.undercouch.download" ) version " 5.6.0"
66 id(" org.jsonschema2pojo" ) version " 1.2.2"
77 id(" io.github.gradle-nexus.publish-plugin" ) version " 2.0.0"
You can’t perform that action at this time.
0 commit comments