Skip to content

Commit cd7e6e2

Browse files
Instrument block builder
1 parent 03622e7 commit cd7e6e2

File tree

9 files changed

+265
-125
lines changed

9 files changed

+265
-125
lines changed

Cargo.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,15 @@ miden-processor = { version = "0.12" }
4040
miden-stdlib = { version = "0.12", default-features = false }
4141
miden-tx = { git = "https://github.com/0xPolygonMiden/miden-base.git", rev = "e82dee03de7589ef3fb12b7fd901cef25ae5535d" }
4242
miden-tx-batch-prover = { git = "https://github.com/0xPolygonMiden/miden-base.git", rev = "e82dee03de7589ef3fb12b7fd901cef25ae5535d" }
43+
opentelemetry = { version = "0.27" }
4344
prost = { version = "0.13" }
4445
rand = { version = "0.8" }
4546
thiserror = { version = "2.0", default-features = false }
4647
tokio = { version = "1.40", features = ["rt-multi-thread"] }
4748
tokio-stream = { version = "0.1" }
4849
tonic = { version = "0.12" }
4950
tracing = { version = "0.1" }
51+
tracing-opentelemetry = { version = "0.28" }
5052
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
5153
url = { version = "2.5", features = ["serde"] }
5254

crates/block-producer/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ tracing-forest = ["miden-node-utils/tracing-forest"]
1919

2020
[dependencies]
2121
async-trait = { version = "0.1" }
22+
futures = { version = "0.3" }
2223
itertools = { workspace = true }
2324
miden-lib = { workspace = true }
2425
miden-node-proto = { workspace = true }
@@ -28,13 +29,15 @@ miden-processor = { workspace = true }
2829
miden-stdlib = { workspace = true }
2930
miden-tx = { workspace = true }
3031
miden-tx-batch-prover = { workspace = true }
32+
opentelemetry = { workspace = true }
3133
rand = { version = "0.8" }
3234
serde = { version = "1.0", features = ["derive"] }
3335
thiserror = { workspace = true }
3436
tokio = { workspace = true, features = ["macros", "net", "rt-multi-thread", "sync", "time"] }
3537
tokio-stream = { workspace = true, features = ["net"] }
3638
tonic = { workspace = true }
3739
tracing = { workspace = true }
40+
tracing-opentelemetry = { workspace = true }
3841
url = { workspace = true }
3942

4043
[dev-dependencies]

0 commit comments

Comments
 (0)