781 B
781 B
Analyser les performances de Bouncer
-
Lancer un benchmark du proxy
go test -bench=. -run '^$' -count=5 -cpuprofile bench_proxy.prof ./internal/proxy
-
Visualiser les temps d'exécution
go tool pprof -web bench_proxy.prof
-
Comparer les performances d'une exécution à l'autre
# Lancer un premier benchmark go test -bench=. -run '^$' -count=10 ./internal/proxy > bench_before.txt # Faire des modifications sur les sources # Lancer un second benchmark go test -bench=. -run '^$' -count=10 ./internal/proxy > bench_after.txt # Installer l'outil benchstat make tools/benchstat/bin/benchstat # Comparer les rapports tools/benchstat/bin/benchstat bench_before.txt bench_after.txt