From 24e1a430eb817b06579da6ff41c0c059a092a807 Mon Sep 17 00:00:00 2001 From: Para Dox Date: Thu, 29 May 2025 22:18:32 +0700 Subject: [PATCH] better --- benchmark-proxy/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark-proxy/main.go b/benchmark-proxy/main.go index 5a40cfe6..33c1d875 100644 --- a/benchmark-proxy/main.go +++ b/benchmark-proxy/main.go @@ -1168,11 +1168,11 @@ func (sc *StatsCollector) printSummary() { cuPrice := sc.methodCUPrices[method] cuEarned := sc.methodCU[method] - fmt.Printf(" %-50s Count: %-5d Avg: %-10s Min: %-10s Max: %-10s p50: %-10s p90: %-10s p99: %-10s CU: %d x %d = %d\n", + fmt.Printf(" %-50s Count: %-5d Avg: %-10s Min: %-10s Max: %-10s p50: %-10s p90: %-10s p99: %-10s CU: %d (%d)\n", displayLabel, len(durations), formatDuration(avg), formatDuration(minDuration), formatDuration(max), formatDuration(p50), formatDuration(p90), formatDuration(p99), - cuPrice, len(durations), cuEarned) + cuEarned, cuPrice) } }