Update changelog and readme for 1.9 (#144)

* Update changelog and readme for 1.9

* Just a bit of moving around
This commit is contained in:
Anuraag Agrawal 2021-12-03 14:47:01 +09:00 committed by GitHub
parent 7ca901a5cb
commit 8992cf8dbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 3 deletions

View File

@ -2,6 +2,19 @@
## Unreleased
## Version 1.9.0
* `opentelemetry-maven-extension`
* [Maven Extension] Update README, bump version to 1.7.0-alpha by @cyrille-leclerc in https://github.com/open-telemetry/opentelemetry-java-contrib/pull/129
* [Maven-Extension] Use Auto Configure Otel SDK Builder by @cyrille-leclerc in https://github.com/open-telemetry/opentelemetry-java-contrib/pull/132
* `opentelemetry-aws-xray`
* Use OkHttp for xray sampling requests. by @anuraaga in https://github.com/open-telemetry/opentelemetry-java-contrib/pull/135
* Use service.name resource attribute instead of span name for service … by @anuraaga in https://github.com/open-telemetry/opentelemetry-java-contrib/pull/138
* X-Ray Sampler: Match rule's HTTP path against http.url attribute if t… by @anuraaga in https://github.com/open-telemetry/opentelemetry-java-contrib/pull/141
* `opentelemetry-jfr-streaming`
* Fix units for some metrics by @kittylyst in https://github.com/open-telemetry/opentelemetry-java-contrib/pull/140
* Tidy up jfr-streaming by @jack-berg in https://github.com/open-telemetry/opentelemetry-java-contrib/pull/127
## Version 1.7.0
* All libraries updated to OpenTelemetry SDK 1.7.0.

View File

@ -16,12 +16,12 @@ The Maven OpenTelemetry Extension is configured using environment variables or J
Add the Maven OpenTelemetry Extension to `${maven.home}/lib/ext` or to the classpath using `-Dmaven.ext.class.path=`.
```
mvn dependency:copy -Dartifact=io.opentelemetry.contrib:opentelemetry-maven-extension:1.7.0-alpha
mvn dependency:copy -Dartifact=io.opentelemetry.contrib:opentelemetry-maven-extension:1.9.0-alpha
export OTEL_TRACES_EXPORTER="otlp"
export OTEL_EXPORTER_OTLP_ENDPOINT="http://otel.example.com:4317"
mvn -Dmaven.ext.class.path=target/dependency/opentelemetry-maven-extension-1.7.0-alpha.jar verify
mvn -Dmaven.ext.class.path=target/dependency/opentelemetry-maven-extension-1.9.0-alpha.jar verify
```
### Declaring the extension in the `pom.xml` file
@ -37,7 +37,7 @@ Add the Maven OpenTelemetry Extension in the `pom.xml` file:
<extension>
<groupId>io.opentelemetry.contrib</groupId>
<artifactId>opentelemetry-maven-extension</artifactId>
<version>1.7.0-alpha</version>
<version>1.9.0-alpha</version>
</extension>
</extensions>
</build>