Super tiny fix missing input throughput (#11607)

This commit is contained in:
fzyzcjy
2025-10-18 07:58:48 +08:00
committed by GitHub
parent 627974405d
commit 8a382fd399

View File

@@ -135,6 +135,7 @@ class SchedulerMetricsMixin:
if self.disaggregation_mode == DisaggregationMode.PREFILL:
f += f"#prealloc-req: {len(self.disagg_prefill_bootstrap_queue.queue)}, "
f += f"#inflight-req: {len(self.disagg_prefill_inflight_queue)}, "
f += f"input throughput (token/s): {self.last_input_throughput:.2f}, "
logger.info(f)