diff --git a/docs/contributing/running-tests.md b/docs/contributing/running-tests.md index b886ee8646a9..e2764fceb9d6 100644 --- a/docs/contributing/running-tests.md +++ b/docs/contributing/running-tests.md @@ -2,7 +2,7 @@ ## Java versions -Open Telemetry Auto Instrumentation's minimal supported version is java 8. +OpenTelemetry Auto Instrumentation's minimal supported version is java 8. All jar files that we produce, unless noted otherwise, have bytecode compatibility with the java 8 runtime. Our test suite is executed against java 8, all LTS versions and the latest non-LTS version. diff --git a/instrumentation/apache-httpclient/apache-httpclient-5.2/library/README.md b/instrumentation/apache-httpclient/apache-httpclient-5.2/library/README.md index c1053547fc56..fb9002c5b6f2 100644 --- a/instrumentation/apache-httpclient/apache-httpclient-5.2/library/README.md +++ b/instrumentation/apache-httpclient/apache-httpclient-5.2/library/README.md @@ -47,12 +47,12 @@ public class ApacheHttpClientConfiguration { this.openTelemetry = openTelemetry; } - // creates a new http client builder for constructing http clients with open telemetry instrumentation + // creates a new http client builder for constructing http clients with opentelemetry instrumentation public HttpClientBuilder createBuilder() { return ApacheHttpClientTelemetry.builder(openTelemetry).build().newHttpClientBuilder(); } - // creates a new http client with open telemetry instrumentation + // creates a new http client with opentelemetry instrumentation public HttpClient newHttpClient() { return ApacheHttpClientTelemetry.builder(openTelemetry).build().newHttpClient(); } diff --git a/instrumentation/jmx-metrics/README.md b/instrumentation/jmx-metrics/README.md index 5de7c40e709e..502ebe8bb5e9 100644 --- a/instrumentation/jmx-metrics/README.md +++ b/instrumentation/jmx-metrics/README.md @@ -6,7 +6,7 @@ local [MBeans](https://docs.oracle.com/javase/tutorial/jmx/mbeans/index.html) available within the instrumented application. The required MBeans and corresponding metrics can be described using a YAML configuration file. The individual metric configurations allow precise metric selection and identification. The selected JMX metrics are reported using the Java Agent internal SDK. This means that they share the configuration and metric exporter with other metrics collected by the agent and are controlled by the same properties, for example `otel.metric.export.interval` or `otel.metrics.exporter`. -The Open Telemetry resource description for the metrics reported by JMX Metric Insight will be the same as for other metrics exported by the SDK, while the instrumentation scope will be `io.opentelemetry.jmx`. +The OpenTelemetry resource description for the metrics reported by JMX Metric Insight will be the same as for other metrics exported by the SDK, while the instrumentation scope will be `io.opentelemetry.jmx`. To control the time interval between MBean detection attempts, one can use the `otel.jmx.discovery.delay` property, which defines the number of milliseconds to elapse between the first and the next detection cycle. JMX Metric Insight may dynamically adjust the time interval between further attempts, but it guarantees that the MBean discovery will run perpetually. diff --git a/instrumentation/jmx-metrics/library/src/main/java/io/opentelemetry/instrumentation/jmx/engine/MetricDef.java b/instrumentation/jmx-metrics/library/src/main/java/io/opentelemetry/instrumentation/jmx/engine/MetricDef.java index c2a42ae49194..cd96d7b66f00 100644 --- a/instrumentation/jmx-metrics/library/src/main/java/io/opentelemetry/instrumentation/jmx/engine/MetricDef.java +++ b/instrumentation/jmx-metrics/library/src/main/java/io/opentelemetry/instrumentation/jmx/engine/MetricDef.java @@ -8,7 +8,7 @@ import java.util.List; /** - * A class providing a complete definition on how to create an Open Telemetry metric out of the JMX + * A class providing a complete definition on how to create an OpenTelemetry metric out of the JMX * system: how to extract values from MBeans and how to model, name and decorate them with * attributes using OpenTelemetry Metric API. Objects of this class are immutable. */ diff --git a/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/SpringWebInstrumentationAutoConfiguration.java b/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/SpringWebInstrumentationAutoConfiguration.java index c4f692607eff..b3e4aa31f3d5 100644 --- a/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/SpringWebInstrumentationAutoConfiguration.java +++ b/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/SpringWebInstrumentationAutoConfiguration.java @@ -18,7 +18,7 @@ /** * Configures {@link RestTemplate} for tracing. * - *
Adds Open Telemetry instrumentation to RestTemplate beans after initialization. + *
Adds OpenTelemetry instrumentation to RestTemplate beans after initialization. * *
This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time. diff --git a/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/webflux/SpringWebfluxInstrumentationAutoConfiguration.java b/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/webflux/SpringWebfluxInstrumentationAutoConfiguration.java index 76288e4952df..ff6d8f9a5d0b 100644 --- a/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/webflux/SpringWebfluxInstrumentationAutoConfiguration.java +++ b/instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/webflux/SpringWebfluxInstrumentationAutoConfiguration.java @@ -18,7 +18,7 @@ /** * Configures {@link WebClient} for tracing. * - *
Adds Open Telemetry instrumentation to WebClient beans after initialization. + *
Adds OpenTelemetry instrumentation to WebClient beans after initialization. * *
This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time. diff --git a/instrumentation/spring/spring-boot-autoconfigure/src/main/javaSpring3/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/RestClientInstrumentationAutoConfiguration.java b/instrumentation/spring/spring-boot-autoconfigure/src/main/javaSpring3/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/RestClientInstrumentationAutoConfiguration.java index 10c8387eecd4..d5cc3af7b0d9 100644 --- a/instrumentation/spring/spring-boot-autoconfigure/src/main/javaSpring3/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/RestClientInstrumentationAutoConfiguration.java +++ b/instrumentation/spring/spring-boot-autoconfigure/src/main/javaSpring3/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/RestClientInstrumentationAutoConfiguration.java @@ -20,7 +20,7 @@ /** * Configures {@link RestClient} for tracing. * - *
Adds Open Telemetry instrumentation to {@link RestClient} beans after initialization. + *
Adds OpenTelemetry instrumentation to {@link RestClient} beans after initialization. * *
This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time.