You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
Reports can get quite large for long runs because they include data about every request, and in fact we could be plotting latency with significantly fewer and a limited amount of points using the downsampler built into Vegeta's plotting capabilities.
Something like this:
diff --git a/report.go b/report.go
index 96d9ea5..c6bbd10 100644
--- a/report.go+++ b/report.go@@ -92,7 +92,7 @@ func report(results []*RunResult) {
}
}
- p := plot.New()+ p := plot.New(plot.Downsample(1600))
for i, res := range results {
folderPath := res.Path
name := res.Name
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Reports can get quite large for long runs because they include data about every request, and in fact we could be plotting latency with significantly fewer and a limited amount of points using the downsampler built into Vegeta's plotting capabilities.
Something like this:
The text was updated successfully, but these errors were encountered: