Skip to content

Commit 165f9a6

Browse files
committed
Merge remote-tracking branch 'otel/main' into health-metrics
2 parents a52d607 + 90e030f commit 165f9a6

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

api/incubator/src/test/java/io/opentelemetry/api/incubator/config/InstrumentationConfigUtilTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 =

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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")

buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ java {
4242

4343
checkstyle {
4444
configDirectory.set(file("$rootDir/buildscripts/"))
45-
toolVersion = "10.23.1"
45+
toolVersion = "10.24.0"
4646
isIgnoreFailures = false
4747
configProperties["rootDir"] = rootDir
4848
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=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
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

sdk-extensions/autoconfigure/src/testIncubating/java/io/opentelemetry/sdk/autoconfigure/DeclarativeConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

sdk-extensions/incubator/src/main/java/io/opentelemetry/sdk/extension/incubator/fileconfig/SdkConfigProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
/**

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pluginManagement {
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"

0 commit comments

Comments
 (0)