Skip to content

Commit 839d2a9

Browse files
authored
Remove space in references to OpenTelemetry (#13901)
1 parent 19f3a90 commit 839d2a9

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

docs/contributing/running-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Java versions
44

5-
Open Telemetry Auto Instrumentation's minimal supported version is java 8.
5+
OpenTelemetry Auto Instrumentation's minimal supported version is java 8.
66
All jar files that we produce, unless noted otherwise, have bytecode
77
compatibility with the java 8 runtime. Our test suite is executed against
88
java 8, all LTS versions and the latest non-LTS version.

instrumentation/apache-httpclient/apache-httpclient-5.2/library/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ public class ApacheHttpClientConfiguration {
4747
this.openTelemetry = openTelemetry;
4848
}
4949

50-
// creates a new http client builder for constructing http clients with open telemetry instrumentation
50+
// creates a new http client builder for constructing http clients with opentelemetry instrumentation
5151
public HttpClientBuilder createBuilder() {
5252
return ApacheHttpClientTelemetry.builder(openTelemetry).build().newHttpClientBuilder();
5353
}
5454

55-
// creates a new http client with open telemetry instrumentation
55+
// creates a new http client with opentelemetry instrumentation
5656
public HttpClient newHttpClient() {
5757
return ApacheHttpClientTelemetry.builder(openTelemetry).build().newHttpClient();
5858
}

instrumentation/jmx-metrics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local [MBeans](https://docs.oracle.com/javase/tutorial/jmx/mbeans/index.html)
66
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.
77

88
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`.
9-
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`.
9+
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`.
1010

1111
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.
1212

instrumentation/jmx-metrics/library/src/main/java/io/opentelemetry/instrumentation/jmx/engine/MetricDef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import java.util.List;
99

1010
/**
11-
* A class providing a complete definition on how to create an Open Telemetry metric out of the JMX
11+
* A class providing a complete definition on how to create an OpenTelemetry metric out of the JMX
1212
* system: how to extract values from MBeans and how to model, name and decorate them with
1313
* attributes using OpenTelemetry Metric API. Objects of this class are immutable.
1414
*/

instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/SpringWebInstrumentationAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* Configures {@link RestTemplate} for tracing.
2020
*
21-
* <p>Adds Open Telemetry instrumentation to RestTemplate beans after initialization.
21+
* <p>Adds OpenTelemetry instrumentation to RestTemplate beans after initialization.
2222
*
2323
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
2424
* at any time.

instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/webflux/SpringWebfluxInstrumentationAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* Configures {@link WebClient} for tracing.
2020
*
21-
* <p>Adds Open Telemetry instrumentation to WebClient beans after initialization.
21+
* <p>Adds OpenTelemetry instrumentation to WebClient beans after initialization.
2222
*
2323
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
2424
* at any time.

instrumentation/spring/spring-boot-autoconfigure/src/main/javaSpring3/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/web/RestClientInstrumentationAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Configures {@link RestClient} for tracing.
2222
*
23-
* <p>Adds Open Telemetry instrumentation to {@link RestClient} beans after initialization.
23+
* <p>Adds OpenTelemetry instrumentation to {@link RestClient} beans after initialization.
2424
*
2525
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
2626
* at any time.

0 commit comments

Comments
 (0)