diff --git a/dc/s2n-quic-dc/src/stream/server/tokio/tcp.rs b/dc/s2n-quic-dc/src/stream/server/tokio/tcp.rs index 34bd4b9e3..d41b043b6 100644 --- a/dc/s2n-quic-dc/src/stream/server/tokio/tcp.rs +++ b/dc/s2n-quic-dc/src/stream/server/tokio/tcp.rs @@ -112,7 +112,8 @@ where event::builder::AcceptorTcpLoopIterationCompleted { pending_streams: workers.working.len(), slots_idle: workers.free.len(), - slot_utilization: workers.working.len() as f32 / workers.workers.len() as f32, + slot_utilization: (workers.working.len() as f32 / workers.workers.len() as f32) + * 100.0, processing_duration: self.env.clock().get_time().saturating_duration_since(now), max_sojourn_time: workers.max_sojourn_time(), },