Skip to content
Open
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
1 change: 1 addition & 0 deletions LICENSE-3rdparty.csv
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,7 @@ tonic-health,https://github.com/hyperium/tonic,MIT,James Nugent <james@jen20.com
tonic-prost,https://github.com/hyperium/tonic,MIT,Lucio Franco <luciofranco14@gmail.com>
tonic-prost-build,https://github.com/hyperium/tonic,MIT,Lucio Franco <luciofranco14@gmail.com>
tonic-reflection,https://github.com/hyperium/tonic,MIT,"James Nugent <james@jen20.com>, Samani G. Gikandi <samani@gojulas.com>"
tonic-types,https://github.com/hyperium/tonic,MIT,"Lucio Franco <luciofranco14@gmail.com>, Rafael Lemos <flemos.rafael.dev@gmail.com>"
tower,https://github.com/tower-rs/tower,MIT,Tower Maintainers <team@tower-rs.com>
tower-http,https://github.com/tower-rs/tower-http,MIT,Tower Maintainers <team@tower-rs.com>
tower-layer,https://github.com/tower-rs/tower,MIT,Tower Maintainers <team@tower-rs.com>
Expand Down
62 changes: 33 additions & 29 deletions quickwit/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 20 additions & 6 deletions quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ lru = "0.18"
matches = "0.1"
md5 = "0.8"
metrics = "0.24"
metrics-exporter-otel = "0.3"
metrics-exporter-otel = "0.3.2"
metrics-exporter-prometheus = { version = "0.18", default-features = false }
metrics-util = "0.20"
mime_guess = "2.0"
Expand All @@ -183,10 +183,10 @@ numfmt = "1.2"
oneshot = { version = "0.2", features = ["async", "std"] }
openssl = { version = "0.10", default-features = false }
openssl-probe = "0.2"
opentelemetry = "0.31"
opentelemetry-appender-tracing = "0.31"
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic", "http-json"] }
opentelemetry = "0.32"
opentelemetry-appender-tracing = "0.32"
opentelemetry_sdk = { version = "0.32", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.32", features = ["grpc-tonic", "http-json"] }
ouroboros = "0.18"
parquet = { version = "58", default-features = false, features = ["arrow", "experimental", "snap", "variant_experimental", "zstd"] }
percent-encoding = "2.3"
Expand Down Expand Up @@ -308,7 +308,7 @@ tower-http = { version = "0.6", features = [
"trace",
] }
tracing = "0.1"
tracing-opentelemetry = "0.32"
tracing-opentelemetry = "0.33"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"json",
Expand Down Expand Up @@ -416,8 +416,22 @@ tantivy-fst = "0.5"
encoding_rs = "=0.8.35"

[patch.crates-io]
# Keep OpenTelemetry on the SDK fix from
# https://github.com/open-telemetry/opentelemetry-rust/pull/3541.
#
metrics-exporter-otel = { git = "https://github.com/shuheiktgw/metrics", rev = "238329060a300f653accf968cca831ac44a8d409" }
opentelemetry = { git = "https://github.com/shuheiktgw/opentelemetry-rust", rev = "7cf7d697626a591394d75c1a7efddcb55198caa6" }
opentelemetry-appender-tracing = { git = "https://github.com/shuheiktgw/opentelemetry-rust", rev = "7cf7d697626a591394d75c1a7efddcb55198caa6" }
opentelemetry-http = { git = "https://github.com/shuheiktgw/opentelemetry-rust", rev = "7cf7d697626a591394d75c1a7efddcb55198caa6" }
opentelemetry-otlp = { git = "https://github.com/shuheiktgw/opentelemetry-rust", rev = "7cf7d697626a591394d75c1a7efddcb55198caa6" }
opentelemetry-proto = { git = "https://github.com/shuheiktgw/opentelemetry-rust", rev = "7cf7d697626a591394d75c1a7efddcb55198caa6" }
opentelemetry_sdk = { git = "https://github.com/shuheiktgw/opentelemetry-rust", rev = "7cf7d697626a591394d75c1a7efddcb55198caa6" }
sasl2-sys = { git = "https://github.com/quickwit-oss/rust-sasl/", rev = "085a4c7" }

[patch."https://github.com/shuheiktgw/metrics"]
metrics = "0.24.6"
metrics-util = "0.20.4"

## this patched version of tracing helps better understand what happens inside futures (when are
## they polled, how long does poll take...)
#tracing = { git = "https://github.com/trinity-1686a/tracing.git", rev = "6806cac3" }
Expand Down
Loading