Remove space in references to OpenTelemetry (#13901)
This commit is contained in:
parent
19f3a9071d
commit
839d2a9666
|
@ -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.
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ package io.opentelemetry.instrumentation.jmx.engine;
|
|||
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.
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@ import org.springframework.web.client.RestTemplate;
|
|||
/**
|
||||
* Configures {@link RestTemplate} for tracing.
|
||||
*
|
||||
* <p>Adds Open Telemetry instrumentation to RestTemplate beans after initialization.
|
||||
* <p>Adds OpenTelemetry instrumentation to RestTemplate beans after initialization.
|
||||
*
|
||||
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
|
||||
* at any time.
|
||||
|
|
|
@ -18,7 +18,7 @@ import org.springframework.web.server.WebFilter;
|
|||
/**
|
||||
* Configures {@link WebClient} for tracing.
|
||||
*
|
||||
* <p>Adds Open Telemetry instrumentation to WebClient beans after initialization.
|
||||
* <p>Adds OpenTelemetry instrumentation to WebClient beans after initialization.
|
||||
*
|
||||
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
|
||||
* at any time.
|
||||
|
|
|
@ -20,7 +20,7 @@ import org.springframework.web.client.RestClient;
|
|||
/**
|
||||
* Configures {@link RestClient} for tracing.
|
||||
*
|
||||
* <p>Adds Open Telemetry instrumentation to {@link RestClient} beans after initialization.
|
||||
* <p>Adds OpenTelemetry instrumentation to {@link RestClient} beans after initialization.
|
||||
*
|
||||
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
|
||||
* at any time.
|
||||
|
|
Loading…
Reference in New Issue