Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PLATFORM-1601]: Fix otlp exporter endpoint #95

Merged
merged 3 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [0.9.0] - 2024-03-26

No new changes since 0.9.0-rc.1

### Changed

- Automatically append /v1/traces to the collector endpoint

This is only done if a /v1/traces suffix isn't already there, meaning old configurations should continue to function

- All log metadata is now stored in the top level object instead of under a `metadata` key.

---

## [0.9.0-rc.1] - 2024-03-11

### Changed
Expand Down Expand Up @@ -148,9 +162,11 @@ If you are using Jaeger to collect traces locally on your machine, you will need



[Unreleased]: https://github.com/primait/prima_tracing.rs/compare/0.9.0-rc.1...HEAD

[Unreleased]: https://github.com/primait/prima_tracing.rs/compare/0.9.0...HEAD
[0.9.0]: https://github.com/primait/prima_tracing.rs/compare/0.9.0-rc.1...0.9.0
[0.9.0-rc.1]: https://github.com/primait/prima_tracing.rs/compare/0.9.0-rc.0...0.9.0-rc.1
[0.9.0]: https://github.com/primait/prima_tracing.rs/compare/0.8.1...0.9.0
[0.9.0-rc.0]: https://github.com/primait/prima_tracing.rs/compare/0.8.1...0.9.0-rc.0
[0.8.1]: https://github.com/primait/prima_tracing.rs/compare/0.8.0...0.8.1
[0.8.0]: https://github.com/primait/prima_tracing.rs/compare/0.7.2...0.8.0
[0.7.2]: https://github.com/primait/prima_tracing.rs/compare/0.7.1...0.7.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
name = "prima-tracing"
readme = "README.md"
repository = "https://github.com/primait/prima_tracing.rs"
version = "0.9.0-rc.1"
version = "0.9.0"

[features]
default = []
Expand Down