Skip to content

Commit 5a3c5f6

Browse files
fix(deps): update dependency io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha to v2.16.0-alpha (#1886)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lauri Tulmin <[email protected]>
1 parent 60ffcf2 commit 5a3c5f6

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

aws-xray-propagator/src/test/java/io/opentelemetry/contrib/awsxray/propagator/internal/AwsComponentProviderTest.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ class AwsComponentProviderTest {
2020

2121
@Test
2222
void endToEnd() {
23-
String yaml = "file_format: 0.3\n" + "propagator:\n" + " composite: [xray, xray-lambda]\n";
23+
String yaml =
24+
"file_format: 0.4\n"
25+
+ "propagator:\n"
26+
+ " composite:\n"
27+
+ " - xray:\n"
28+
+ " - xray-lambda:\n";
2429

2530
OpenTelemetrySdk openTelemetrySdk =
2631
DeclarativeConfiguration.parseAndCreate(

cloudfoundry-resources/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This variable contains a JSON structure, which is parsed to fill the following a
1717
| cloudfoundry.space.id | space_id |
1818
| cloudfoundry.space.name | space_name |
1919

20-
The resource attributes follow the [CloudFoundry semantic convention.](https://github.com/open-telemetry/semantic-conventions/blob/main/docs/attributes-registry/cloudfoundry.md).
20+
The resource attributes follow the [CloudFoundry semantic convention.](https://github.com/open-telemetry/semantic-conventions/blob/main/docs/registry/attributes/cloudfoundry.md).
2121
A description of `VCAP_APPLICATION` is available in the [CloudFoundry documentation](https://docs.cloudfoundry.org/devguide/deploy-apps/environment-variable.html#VCAP-APPLICATION).
2222

2323
## Component owners

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
`java-platform`
33
}
44

5-
val otelInstrumentationVersion = "2.15.0-alpha"
5+
val otelInstrumentationVersion = "2.16.0-alpha"
66
val semconvVersion = "1.32.0"
77

88
javaPlatform {

jmx-scraper/src/integrationTest/java/io/opentelemetry/contrib/jmxscraper/target_systems/JvmIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ protected JmxScraperContainer customizeScraperContainer(
3232
JmxScraperContainer scraper, GenericContainer<?> target, Path tempDir) {
3333
return scraper
3434
.withTargetSystem("jvm")
35-
// TODO when JVM metrics will be added to instrumentation, the default "auto" source
35+
// Since JVM metrics were be added to instrumentation, the default "auto" source
3636
// means that the definitions in instrumentation will be used, and thus this test will fail
3737
// due to metrics differences, adding an explicit "legacy" source is required to continue
3838
// testing the JVM metrics defined in this project.
3939
// https://github.com/open-telemetry/opentelemetry-java-instrumentation/pull/13392
40-
// .withTargetSystem("legacy")
40+
.withTargetSystemSource("legacy")
4141
// also testing custom yaml
4242
.withCustomYaml("custom-metrics.yaml");
4343
}

processors/src/test/java/io/opentelemetry/contrib/eventbridge/internal/EventToSpanBridgeComponentProviderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class EventToSpanBridgeComponentProviderTest {
1818
@Test
1919
void endToEnd() {
2020
String yaml =
21-
"file_format: 0.3\n"
21+
"file_format: 0.4\n"
2222
+ "logger_provider:\n"
2323
+ " processors:\n"
2424
+ " - event_to_span_event_bridge:\n";

samplers/src/test/java/internal/RuleBasedRoutingSamplerComponentProviderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class RuleBasedRoutingSamplerComponentProviderTest {
3838
@Test
3939
void endToEnd() {
4040
String yaml =
41-
"file_format: 0.3\n"
41+
"file_format: 0.4\n"
4242
+ "tracer_provider:\n"
4343
+ " sampler:\n"
4444
+ " parent_based:\n"

0 commit comments

Comments
 (0)