diff --git a/compute_tools/src/compute.rs b/compute_tools/src/compute.rs index aec4e49725..9fcdae73a4 100644 --- a/compute_tools/src/compute.rs +++ b/compute_tools/src/compute.rs @@ -549,6 +549,13 @@ impl ComputeNode { pspec.spec.cluster.cluster_id.as_deref().unwrap_or("None") ); + // Log metrics so that we can search for slow operations in logs + let metrics = { + let state = self.state.lock().unwrap(); + state.metrics.clone() + }; + info!(?metrics, "compute start finished"); + Ok(pg) }