You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.25.0)
4
+
[](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.26.0)
@@ -43,11 +43,6 @@ see [Migrate from the SignalFx Java Agent](https://help.splunk.com/en/splunk-obs
43
43
44
44
<!-- Comments, spacing, empty and new lines in the section below are intentional, please do not modify them! -->
45
45
<!--DEV_DOCS_WARNING-->
46
-
<!--DEV_DOCS_WARNING_START-->
47
-
The following documentation refers to the in-development version of `splunk-otel-java`. Docs for the latest version ([v2.25.1](https://github.com/signalfx/splunk-otel-java/releases/latest)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v2.25.1/README.md).
48
-
49
-
---
50
-
<!--DEV_DOCS_WARNING_END-->
51
46
52
47
## Requirements
53
48
@@ -79,11 +74,11 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java,
79
74
you have to use a compatible API version.
80
75
81
76
<!-- IMPORTANT: do not change comments or break those lines below -->
82
-
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->2.25.1<!--SPLUNK_VERSION--> is compatible
77
+
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->2.26.0<!--SPLUNK_VERSION--> is compatible
83
78
with:
84
79
85
-
* OpenTelemetry API version <!--OTEL_VERSION-->1.57.0<!--OTEL_VERSION-->
86
-
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->2.25.0<!--OTEL_INSTRUMENTATION_VERSION-->
80
+
* OpenTelemetry API version <!--OTEL_VERSION-->1.60.1<!--OTEL_VERSION-->
81
+
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->2.26.0<!--OTEL_INSTRUMENTATION_VERSION-->
# opentelemetry-sdk-trace jar includes META-INF/maven/org.jctools/jctools-core Hopefully this will get removed in the next release and we won't need these overrides
2
-
io.opentelemetry:opentelemetry-sdk-trace:1.59.0|https://github.com/open-telemetry/opentelemetry-java|Apache License, Version 2.0|https://www.apache.org/licenses/LICENSE-2.0
| `otel.instrumentation.opentelemetry-annotations.exclude-methods` | String | | All methods to be excluded from auto-instrumentation by annotation-based advices. |
@@ -3485,6 +3521,10 @@ Some instrumentations (e.g. Spring Web MVC instrumentation) produce SpanKind.Int
3485
3521
"jvm.file_descriptor.count",
3486
3522
MetricInstrument.UP_DOWN_COUNTER,
3487
3523
"Number of open file descriptors as reported by the JVM (disabled by default).")
3524
+
.customMetric(
3525
+
"jvm.file_descriptor.limit",
3526
+
MetricInstrument.UP_DOWN_COUNTER,
3527
+
"Measure of max open file descriptors as reported by the JVM (disabled by default).")
3488
3528
// XXX JFR metrics from runtime-telemetry-java17 are missing
3489
3529
.build());
3490
3530
instrumentations.add(instrumentation("javalin").component("Javalin", "5.0 and higher").build());
@@ -3757,6 +3797,8 @@ Some instrumentations (e.g. Spring Web MVC instrumentation) produce SpanKind.Int
3757
3797
instrumentations.add(
3758
3798
instrumentation("xxl-job").component("XXL-JOB", "1.9.2 and higher").build());
3759
3799
instrumentations.add(instrumentation("zio").component("ZIO", "2.0 and higher").build());
3800
+
instrumentations.add(
3801
+
instrumentation("zio-http").component("ZIO HTTP", "3.0 and higher").build());
3760
3802
3761
3803
// splunk instrumentations
3762
3804
instrumentations.add(
@@ -3866,7 +3908,7 @@ Some instrumentations (e.g. Spring Web MVC instrumentation) produce SpanKind.Int
0 commit comments