-
Notifications
You must be signed in to change notification settings - Fork 469
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
12 changed files
with
85 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "A metrics collection and distributed tracing framework" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust" | ||
|
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 |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
## v0.1.0 | ||
|
||
### Added | ||
- B3 propagator(moved from api module) | ||
- Jaeger propagator | ||
|
||
- Datadog exporter |
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-jaeger" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Jaeger exporter for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/master/opentelemetry-jaeger" | ||
|
@@ -20,7 +20,7 @@ async-std = { version = "1.6", optional = true } | |
async-trait = "0.1" | ||
http = { version = "0.2", optional = true } | ||
isahc = { version = "0.9", default-features = false, optional = true } | ||
opentelemetry = { version = "0.8", default-features = false, features = ["trace"], path = ".." } | ||
opentelemetry = { version = "0.9", default-features = false, features = ["trace"], path = ".." } | ||
thrift = "0.13" | ||
tokio = { version = "0.2", features = ["udp", "sync"], optional = true } | ||
|
||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Exporter for the OpenTelemetry Collector" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/master/opentelemetry-otlp" | ||
|
@@ -20,7 +20,7 @@ build = "build.rs" | |
async-trait = "0.1" | ||
futures = "0.3.5" | ||
grpcio = "0.6" | ||
opentelemetry = { version = "0.8.0", default-features = false, features = ["trace"], path = ".." } | ||
opentelemetry = { version = "0.9.0", default-features = false, features = ["trace"], path = ".." } | ||
protobuf = "2.18" | ||
|
||
[build-dependencies] | ||
|
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
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-zipkin" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Zipkin exporter for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/master/opentelemetry-zipkin" | ||
|
@@ -23,7 +23,7 @@ surf-client = ["opentelemetry/surf"] | |
|
||
[dependencies] | ||
async-trait = "0.1" | ||
opentelemetry = { version = "0.8.0", path = "..", features = ["trace", "http"] } | ||
opentelemetry = { version = "0.9.0", path = "..", features = ["trace", "http"] } | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
typed-builder = "0.5" | ||
|