639a00e2ab
This introduces optional helper function in tvix/tracing for trace propagation and uses these helper in the `tvix-store`. The GRPCBlobService, GRPCDirectoryService and GRPCPathInfoService now accept a generic client, meaning the client can be generated with either `::new` or `::with_interceptor`. This was tested and validated by starting a `tvix-store daemon` and `tvix-store import`. Change-Id: I4b194483bf09266820104b4b56e4a135dca2b77a Reviewed-on: https://cl.tvl.fyi/c/depot/+/11863 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "tvix-tracing"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
tracing = { version = "0.1.40", features = ["max_level_trace", "release_max_level_debug"] }
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
indicatif = "0.17.8"
|
|
tracing-indicatif = "0.3.6"
|
|
tokio = { version = "1.32.0" , features = ["sync", "rt"] }
|
|
thiserror = "1.0.38"
|
|
|
|
tracing-opentelemetry = { version = "0.23.0", optional = true }
|
|
opentelemetry = { version = "0.22.0", optional = true }
|
|
opentelemetry-otlp = { version = "0.15.0", optional = true }
|
|
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"], optional = true }
|
|
tracing-tracy = { version = "0.11.0", features = ["flush-on-exit"], optional = true }
|
|
opentelemetry-http = { version = "0.11.0", optional = true }
|
|
|
|
tonic = { version = "0.11.0", optional = true }
|
|
http = { version = "0.2.11", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
otlp = [
|
|
"dep:tracing-opentelemetry",
|
|
"dep:opentelemetry",
|
|
"dep:opentelemetry-otlp",
|
|
"dep:opentelemetry_sdk",
|
|
"dep:opentelemetry-http"
|
|
]
|
|
tracy = [
|
|
"dep:tracing-tracy"
|
|
]
|
|
tonic = [
|
|
"dep:tonic",
|
|
"dep:http",
|
|
]
|
|
|
|
[lints]
|
|
workspace = true
|