From fd031d5cf967d872a1223d3bbaa915604307d768 Mon Sep 17 00:00:00 2001 From: itamar Date: Mon, 25 Mar 2024 11:49:23 -0400 Subject: [PATCH] add rollup_id to geth collector run instrumentation --- crates/astria-composer/src/collectors/geth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/astria-composer/src/collectors/geth.rs b/crates/astria-composer/src/collectors/geth.rs index 703198728c..4b7c58a93a 100644 --- a/crates/astria-composer/src/collectors/geth.rs +++ b/crates/astria-composer/src/collectors/geth.rs @@ -105,7 +105,7 @@ impl Geth { /// Starts the collector instance and runs until failure or until /// explicitly closed - #[instrument(skip_all, fields(chain_name = self.chain_name))] + #[instrument(skip_all, fields(chain_name = self.chain_name, rollup_id = %self.rollup_id))] pub(crate) async fn run_until_stopped(self) -> eyre::Result<()> { use std::time::Duration;