Skip to content

Commit 7c2ea64

Browse files
authored
Merge pull request #389 from jamezp/issue388
[388] Change OpenTracing to Telemetry in the documentation and JavaDoc.
2 parents 48fb4c7 + 4ea620a commit 7c2ea64

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

api/src/main/java/org/eclipse/microprofile/rest/client/spi/RestClientBuilderListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* Implementations of this interface will be notified when new RestClientBuilder instances are being constructed. This
2626
* will allow implementations to register providers on the RestClientBuilder, and is intended for global providers. For
27-
* example, a MicroProfile OpenTracing implementation might want to register a ClientRequestFilter to initiate tracing.
27+
* example, a MicroProfile Telemetry implementation might want to register a ClientRequestFilter to initiate tracing.
2828
*
2929
* In order for the RestClientBuilder to call implementations of this interface, the implementation must be specified
3030
* such that a ServiceLoader can find it - i.e. it must be specified in the <code>

spec/src/main/asciidoc/integration.asciidoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ comma-separated list of headers in the following MicroProfile Config property:
5656

5757
`org.eclipse.microprofile.rest.client.propagateHeaders`.
5858

59-
If the client interface is used within a Jakarta RESTful Web Services context, then the implementation may support injection of `@Context`
59+
If the client interface is used within a Jakarta RESTful Web Services context, then the implementation may support injection of `@Context`
6060
fields and methods into custom `ClientHeadersFactory` instances. The injected objects are related to the Jakarta RESTful Web Services context
6161
(i.e. an injected `UriInfo` will be specific to the Jakarta RESTful Web Services resource's URI, not the URI of the MP Rest Client interface).
6262
This injection is optional for the implementation, so the only portable injection mechanism of `ClientHeadersFactory`
6363
instances is `@Inject` when the client is managed by CDI.
6464

6565
=== Other MicroProfile Technologies
6666

67-
Client requests can be automatically traced when using MP OpenTracing. Likewise, requests can be measured using MP Metrics.
67+
Client requests can be automatically traced when using MP Telemetry. Likewise, requests can be measured using MP Metrics.
6868
Configuration and usage of these technologies should be defined in their respective specification documents.

0 commit comments

Comments
 (0)