Update the documention for 0.17.0 (#2885)
This commit is contained in:
parent
a91e239406
commit
ded7256c48
|
|
@ -207,8 +207,8 @@ The following presents an example of an outgoing HTTP request using `HttpURLConn
|
||||||
|
|
||||||
```java
|
```java
|
||||||
// Tell OpenTelemetry to inject the context in the HTTP headers
|
// Tell OpenTelemetry to inject the context in the HTTP headers
|
||||||
TextMapPropagator.Setter<HttpURLConnection> setter =
|
TextMapSetter<HttpURLConnection> setter =
|
||||||
new TextMapPropagator.Setter<HttpURLConnection>() {
|
new TextMapSetter<HttpURLConnection>() {
|
||||||
@Override
|
@Override
|
||||||
public void set(HttpURLConnection carrier, String key, String value) {
|
public void set(HttpURLConnection carrier, String key, String value) {
|
||||||
// Insert the context as Header
|
// Insert the context as Header
|
||||||
|
|
@ -238,8 +238,8 @@ The following presents an example of processing an incoming HTTP request using
|
||||||
[HttpExchange](https://docs.oracle.com/javase/8/docs/jre/api/net/httpserver/spec/com/sun/net/httpserver/HttpExchange.html).
|
[HttpExchange](https://docs.oracle.com/javase/8/docs/jre/api/net/httpserver/spec/com/sun/net/httpserver/HttpExchange.html).
|
||||||
|
|
||||||
```java
|
```java
|
||||||
TextMapPropagator.Getter<HttpExchange> getter =
|
TextMapGetter<HttpExchange> getter =
|
||||||
new TextMapPropagator.Getter<>() {
|
new TextMapGetter<>() {
|
||||||
@Override
|
@Override
|
||||||
public String get(HttpExchange carrier, String key) {
|
public String get(HttpExchange carrier, String key) {
|
||||||
if (carrier.getRequestHeaders().containsKey(key)) {
|
if (carrier.getRequestHeaders().containsKey(key)) {
|
||||||
|
|
|
||||||
32
README.md
32
README.md
|
|
@ -63,7 +63,7 @@ dependency versions in sync.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.opentelemetry</groupId>
|
<groupId>io.opentelemetry</groupId>
|
||||||
<artifactId>opentelemetry-bom</artifactId>
|
<artifactId>opentelemetry-bom</artifactId>
|
||||||
<version>0.16.0</version>
|
<version>0.17.0</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
@ -82,7 +82,7 @@ dependency versions in sync.
|
||||||
|
|
||||||
```groovy
|
```groovy
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation platform("io.opentelemetry:opentelemetry-bom:0.16.0")
|
implementation platform("io.opentelemetry:opentelemetry-bom:0.17.0")
|
||||||
implementation('io.opentelemetry:opentelemetry-api')
|
implementation('io.opentelemetry:opentelemetry-api')
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
@ -107,7 +107,7 @@ We strongly recommend using our published BOM to keep all dependency versions in
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.opentelemetry</groupId>
|
<groupId>io.opentelemetry</groupId>
|
||||||
<artifactId>opentelemetry-bom</artifactId>
|
<artifactId>opentelemetry-bom</artifactId>
|
||||||
<version>0.17.0-SNAPSHOT</version>
|
<version>0.18.0-SNAPSHOT</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
@ -150,19 +150,19 @@ This is a **current** feature status list:
|
||||||
|
|
||||||
| Component | Version |
|
| Component | Version |
|
||||||
| --------------------------- | ------- |
|
| --------------------------- | ------- |
|
||||||
| Trace API | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
|
| Trace API | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
|
||||||
| Trace SDK | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
|
| Trace SDK | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
|
||||||
| Context | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
|
| Context | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
|
||||||
| Baggage | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
|
| Baggage | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
|
||||||
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
|
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
|
||||||
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
|
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
|
||||||
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
|
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
|
||||||
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
|
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||||
| Metrics API | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
|
| Metrics API | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||||
| Metrics SDK | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
|
| Metrics SDK | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||||
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
|
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||||
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
|
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||||
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
|
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||||
|
|
||||||
See the project [milestones](https://github.com/open-telemetry/opentelemetry-java/milestones)
|
See the project [milestones](https://github.com/open-telemetry/opentelemetry-java/milestones)
|
||||||
for details on upcoming releases. The dates and features described in issues
|
for details on upcoming releases. The dates and features described in issues
|
||||||
|
|
|
||||||
|
|
@ -87,11 +87,6 @@ After it is merged, Run the patch release workflow again, but leave the commits
|
||||||
The release will be made with the current state of the release branch, which is what you prepared
|
The release will be made with the current state of the release branch, which is what you prepared
|
||||||
above.
|
above.
|
||||||
|
|
||||||
## Release candidates
|
|
||||||
|
|
||||||
Release candidate artifacts are released using the same process described above. The version schema for release candidates
|
|
||||||
is`v1.2.3-RC$`, where `$` denotes a release candidate version, e.g. `v1.2.3-RC1`.
|
|
||||||
|
|
||||||
## Credentials
|
## Credentials
|
||||||
|
|
||||||
The following credentials are required for publishing (and automatically set in Circle CI):
|
The following credentials are required for publishing (and automatically set in Circle CI):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue