-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
198 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
### Added | ||
|
||
- AWS XRay propagator | ||
- AWS XRay propagator #446 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-contrib" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Rust contrib repo for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-contrib" | ||
|
@@ -24,7 +24,7 @@ base64_format = ["base64", "binary_propagator"] | |
binary_propagator = [] | ||
|
||
[dependencies] | ||
opentelemetry = { version = "0.12", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry = { version = "0.13", path = "../opentelemetry", features = ["trace"] } | ||
base64 = { version = "0.13", optional = true } | ||
lazy_static = "1.4" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Changelog | ||
|
||
## v0.2.0 | ||
|
||
### Changed | ||
- Update to opentelemetry v0.13.0 | ||
|
||
## v0.1.0 | ||
|
||
### Added | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-http" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Helper implementations for exchange of traces and metrics over HTTP" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust" | ||
|
@@ -13,7 +13,7 @@ edition = "2018" | |
async-trait = "0.1.42" | ||
http = "0.2.2" | ||
isahc = { version = "0.9", default-features = false, optional = true } | ||
opentelemetry = { version = "0.12", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry = { version = "0.13", path = "../opentelemetry", features = ["trace"] } | ||
reqwest = { version = "0.11", default-features = false, features = ["blocking"], optional = true } | ||
surf = { version = "2.0", default-features = false, optional = true } | ||
thiserror = "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-jaeger" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Jaeger exporter for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-jaeger" | ||
|
@@ -27,8 +27,8 @@ futures-util = { version = "0.3", optional = true } | |
http = { version = "0.2", optional = true } | ||
isahc = { version = "0.9", default-features = false, optional = true } | ||
js-sys = { version = "0.3", optional = true } | ||
opentelemetry = { version = "0.12", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
opentelemetry-http = { version = "0.1", path = "../opentelemetry-http", optional = true } | ||
opentelemetry = { version = "0.13", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
opentelemetry-http = { version = "0.2", path = "../opentelemetry-http", optional = true } | ||
pin-project = { version = "1.0", optional = true } | ||
thrift = "0.13" | ||
tokio = { version = "1.0", features = ["net", "sync"], optional = true } | ||
|
@@ -41,7 +41,7 @@ headers = { version = "0.3.2", optional = true } | |
surf = { version = "2.0", optional = true } | ||
|
||
[dev-dependencies] | ||
opentelemetry = { version = "0.12", default-features = false, features = ["trace", "testing"], path = "../opentelemetry" } | ||
opentelemetry = { version = "0.13", default-features = false, features = ["trace", "testing"], path = "../opentelemetry" } | ||
futures = "0.3" | ||
|
||
[dependencies.web-sys] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-otlp" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Exporter for the OpenTelemetry Collector" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp" | ||
|
@@ -33,7 +33,7 @@ rustdoc-args = ["--cfg", "docsrs"] | |
async-trait = "0.1" | ||
futures = "0.3" | ||
grpcio = { version = "0.7", optional = true } | ||
opentelemetry = { version = "0.12", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
opentelemetry = { version = "0.13", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
prost = { version = "0.7", optional = true } | ||
protobuf = { version = "2.18", optional = true } | ||
thiserror = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.