Skip to content

Commit 342ab79

Browse files
authored
trace: roll tracing and tracing-subscriber dependencies (#615)
This picks up upstream changes tokio-rs/tracing#853, tokio-rs/tracing#868, and tokio-rs/tracing#869 which improve performance in some use cases. The overhead removed by these changes may already be amortized enough in the proxy that it's not a problem, but it seems worth picking up regardless. Signed-off-by: Eliza Weisman <[email protected]>
1 parent d5fe0e6 commit 342ab79

File tree

30 files changed

+37
-37
lines changed

30 files changed

+37
-37
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2730,9 +2730,9 @@ dependencies = [
27302730

27312731
[[package]]
27322732
name = "tracing"
2733-
version = "0.1.16"
2733+
version = "0.1.18"
27342734
source = "registry+https://github.com/rust-lang/crates.io-index"
2735-
checksum = "c2e2a2de6b0d5cbb13fc21193a2296888eaab62b6044479aafb3c54c01c29fcd"
2735+
checksum = "f0aae59226cf195d8e74d4b34beae1859257efb4e5fed3f147d2dc2c7d372178"
27362736
dependencies = [
27372737
"cfg-if",
27382738
"log",
@@ -2753,9 +2753,9 @@ dependencies = [
27532753

27542754
[[package]]
27552755
name = "tracing-core"
2756-
version = "0.1.11"
2756+
version = "0.1.12"
27572757
source = "registry+https://github.com/rust-lang/crates.io-index"
2758-
checksum = "94ae75f0d28ae10786f3b1895c55fe72e79928fd5ccdebb5438c75e93fec178f"
2758+
checksum = "b2734b5a028fa697686f16c6d18c2c6a3c7e41513f9a213abb6754c4acb3c8d7"
27592759
dependencies = [
27602760
"lazy_static",
27612761
]
@@ -2793,9 +2793,9 @@ dependencies = [
27932793

27942794
[[package]]
27952795
name = "tracing-subscriber"
2796-
version = "0.2.8"
2796+
version = "0.2.10"
27972797
source = "registry+https://github.com/rust-lang/crates.io-index"
2798-
checksum = "cafe899b943f5433c6cab468d75a17ea92948fe9fe60b00f41e13d5e0d4fd054"
2798+
checksum = "f7b33f8b2ef2ab0c3778c12646d9c42a24f7772bee4cdafc72199644a9f58fdc"
27992799
dependencies = [
28002800
"ansi_term",
28012801
"chrono",

linkerd/admit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ publish = false
99
futures = "0.3"
1010
linkerd2-error = { path = "../error" }
1111
tower = { version = "0.3", default-features = false, features = ["util"] }
12-
tracing = "0.1"
12+
tracing = "0.1.18"

linkerd/app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ regex = "1.0.0"
2828
tokio = { version = "0.2", features = ["rt-util"] }
2929
tonic = { version = "0.2", default-features = false, features = ["prost"] }
3030
tower = "0.3"
31-
tracing = "0.1.9"
31+
tracing = "0.1.18"
3232
tracing-futures = { version = "0.2", features = ["std-future"]}
3333
html-escape = "0.2.5"
3434

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ tokio = { version = "0.2.22", features = ["macros", "sync", "parking_lot"]}
6767
tokio-timer = "0.2"
6868
tower-request-modifier = { git = "https://github.com/tower-rs/tower-http" }
6969
tonic = { version = "0.2", default-features = false, features = ["prost"] }
70-
tracing = "0.1.9"
70+
tracing = "0.1.18"
7171
tracing-futures = { version = "0.2", features = ["std-future"] }
7272
tracing-log = "0.1"
7373
pin-project = "0.4"

linkerd/app/gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ linkerd2-app-core = { path = "../core" }
1313
linkerd2-app-inbound = { path = "../inbound" }
1414
linkerd2-app-outbound = { path = "../outbound" }
1515
tower = { version = "0.3", default-features = false }
16-
tracing = "0.1"
16+
tracing = "0.1.18"
1717

1818
[dev-dependencies]
1919
tokio = { version = "0.2", features = ["rt-core", "macros"] }

linkerd/app/inbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ futures = { version = "0.3" }
1515
indexmap = "1.0"
1616
linkerd2-app-core = { path = "../core" }
1717
tokio = { version = "0.2", features = ["sync"] }
18-
tracing = "0.1.9"
18+
tracing = "0.1.18"
1919

2020
[dependencies.tower]
2121
version = "0.3"

linkerd/app/integration/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ tokio = { version = "0.2", features = ["io-util", "net", "rt-core"]}
3737
tokio-rustls = "0.13"
3838
tower = { version = "0.3", default-features = false}
3939
tonic = { version = "0.2", default-features = false }
40-
tracing = "0.1.9"
40+
tracing = "0.1.18"
4141
tracing-futures = { version = "0.2", features = ["std-future"] }
4242
webpki = "0.21.0"
4343

4444
[dependencies.tracing-subscriber]
45-
version = "0.2.8"
45+
version = "0.2.10"
4646
# we don't need `chrono` time formatting or ANSI colored output
4747
default-features = false
4848
features = ["env-filter", "fmt", "smallvec", "tracing-log", "json", "parking_lot"]

linkerd/app/outbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ linkerd2-app-core = { path = "../core" }
1717
linkerd2-identity = { path = "../../identity" }
1818
linkerd2-retry = { path = "../../retry" }
1919
tokio = { version = "0.2", features = ["sync"]}
20-
tracing = "0.1.9"
20+
tracing = "0.1.18"
2121
pin-project = "0.4"
2222

2323
[dependencies.tower]

linkerd/buffer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ futures = "0.3"
1010
linkerd2-error = { path = "../error" }
1111
tokio = { version = "0.2", features = ["sync", "stream", "time", "macros"] }
1212
tower = { version = "0.3", default_features = false, features = ["util"] }
13-
tracing = "0.1"
13+
tracing = "0.1.18"
1414
tracing-futures = { version = "0.2", features = ["std-future"] }
1515
pin-project = "0.4"
1616

linkerd/cache/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ linkerd2-error = { path = "../error" }
1111
linkerd2-stack = { path = "../stack" }
1212
tokio = "0.2"
1313
tower = { version = "0.3", default-features = false, features = ["util"] }
14-
tracing = "0.1"
14+
tracing = "0.1.18"

0 commit comments

Comments
 (0)