Skip to content

Commit 2ef585f

Browse files
committed
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-instrumentation into yaml-jmx-metrics-test
2 parents 8b938a2 + d503937 commit 2ef585f

File tree

69 files changed

+362
-183
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+362
-183
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,6 @@ Debug logging negatively impacts the performance of your application.
136136

137137
See [CONTRIBUTING.md](CONTRIBUTING.md).
138138

139-
Triagers ([@open-telemetry/java-instrumentation-triagers](https://github.com/orgs/open-telemetry/teams/java-instrumentation-triagers)):
140-
141-
- [Jonas Kunz](https://github.com/JonasKunz), Elastic
142-
- [Sylvain Juge](https://github.com/SylvainJuge), Elastic
143-
144139
Approvers ([@open-telemetry/java-instrumentation-approvers](https://github.com/orgs/open-telemetry/teams/java-instrumentation-approvers)):
145140

146141
- [Gregor Zeitlinger](https://github.com/zeitlinger), Grafana
@@ -149,7 +144,9 @@ Approvers ([@open-telemetry/java-instrumentation-approvers](https://github.com/o
149144
- [Jay DeLuca](https://github.com/jaydeluca)
150145
- [Jean Bisutti](https://github.com/jeanbisutti), Microsoft
151146
- [John Watson](https://github.com/jkwatson), Cloudera
147+
- [Jonas Kunz](https://github.com/JonasKunz), Elastic
152148
- [Steve Rao](https://github.com/steverao), Alibaba
149+
- [Sylvain Juge](https://github.com/SylvainJuge), Elastic
153150

154151
Maintainers ([@open-telemetry/java-instrumentation-maintainers](https://github.com/orgs/open-telemetry/teams/java-instrumentation-maintainers)):
155152

benchmark-overhead/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("java")
3-
id("com.diffplug.spotless") version "7.0.2"
3+
id("com.diffplug.spotless") version "7.0.3"
44
}
55

66
spotless {

conventions/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
`kotlin-dsl`
33
// When updating, update below in dependencies too
4-
id("com.diffplug.spotless") version "7.0.2"
4+
id("com.diffplug.spotless") version "7.0.3"
55
}
66

77
spotless {
@@ -54,12 +54,12 @@ dependencies {
5454
implementation("org.apache.maven:maven-aether-provider:3.3.9")
5555

5656
// When updating, update above in plugins too
57-
implementation("com.diffplug.spotless:spotless-plugin-gradle:7.0.2")
58-
implementation("com.google.guava:guava:33.4.6-jre")
57+
implementation("com.diffplug.spotless:spotless-plugin-gradle:7.0.3")
58+
implementation("com.google.guava:guava:33.4.7-jre")
5959
implementation("gradle.plugin.com.google.protobuf:protobuf-gradle-plugin:0.8.18")
6060
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.6")
6161
implementation("org.apache.httpcomponents:httpclient:4.5.14")
62-
implementation("com.gradle.develocity:com.gradle.develocity.gradle.plugin:3.19.2")
62+
implementation("com.gradle.develocity:com.gradle.develocity.gradle.plugin:4.0")
6363
implementation("org.owasp:dependency-check-gradle:12.1.1")
6464
implementation("ru.vyarus:gradle-animalsniffer-plugin:2.0.0")
6565
implementation("org.spdx:spdx-gradle-plugin:0.9.0")

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ val DEPENDENCY_BOMS = listOf(
2929

3030
"com.fasterxml.jackson:jackson-bom:2.18.3",
3131
"com.squareup.okio:okio-bom:3.10.2", // see https://github.com/open-telemetry/opentelemetry-java/issues/5637
32-
"com.google.guava:guava-bom:33.4.6-jre",
32+
"com.google.guava:guava-bom:33.4.7-jre",
3333
"org.apache.groovy:groovy-bom:${groovyVersion}",
3434
"io.opentelemetry:opentelemetry-bom:${otelSdkVersion}",
3535
"io.opentelemetry:opentelemetry-bom-alpha:${otelSdkAlphaVersion}",

examples/distro/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212
}
1313
}
1414
dependencies {
15-
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.2"
15+
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.3"
1616
classpath "com.gradleup.shadow:shadow-gradle-plugin:8.3.6"
1717
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.15.0-alpha-SNAPSHOT"
1818
}

examples/extension/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
See https://imperceptiblethoughts.com/shadow/ for more details about Shadow plugin.
1212
*/
1313
id "com.gradleup.shadow" version "8.3.6"
14-
id "com.diffplug.spotless" version "7.0.2"
14+
id "com.diffplug.spotless" version "7.0.3"
1515

1616
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.15.0-alpha-SNAPSHOT"
1717
id "io.opentelemetry.instrumentation.muzzle-check" version "2.15.0-alpha-SNAPSHOT"

gradle-plugins/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ val byteBuddyVersion = "1.17.5"
2929
val aetherVersion = "1.1.0"
3030

3131
dependencies {
32-
implementation("com.google.guava:guava:33.4.6-jre")
32+
implementation("com.google.guava:guava:33.4.7-jre")
3333
// we need to use byte buddy variant that does not shade asm
3434
implementation("net.bytebuddy:byte-buddy-gradle-plugin:${byteBuddyVersion}") {
3535
exclude(group = "net.bytebuddy", module = "byte-buddy")

instrumentation-api-incubator/src/main/java/io/opentelemetry/instrumentation/api/incubator/semconv/messaging/MessagingProducerMetrics.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ private MessagingProducerMetrics(Meter meter) {
4747
}
4848

4949
public static OperationMetrics get() {
50-
return OperationMetricsUtil.create("messaging produce", MessagingProducerMetrics::new);
50+
return OperationMetricsUtil.create("messaging producer", MessagingProducerMetrics::new);
5151
}
5252

5353
@Override

instrumentation/apache-dubbo-2.7/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/apachedubbo/v2_7/OpenTelemetryClientFilter.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
import org.apache.dubbo.rpc.Invoker;
1212
import org.apache.dubbo.rpc.Result;
1313

14-
@Activate(group = {"consumer"})
14+
@Activate(
15+
group = {"consumer"},
16+
order = -1)
1517
public final class OpenTelemetryClientFilter implements Filter {
1618

1719
private final Filter delegate;

instrumentation/apache-dubbo-2.7/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/apachedubbo/v2_7/OpenTelemetryServerFilter.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
import org.apache.dubbo.rpc.Invoker;
1212
import org.apache.dubbo.rpc.Result;
1313

14-
@Activate(group = {"provider"})
14+
@Activate(
15+
group = {"provider"},
16+
order = -1)
1517
public final class OpenTelemetryServerFilter implements Filter {
1618

1719
private final Filter delegate;

0 commit comments

Comments
 (0)