-
-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Define Acceptable Ranges for Measurement Values #176
Comments
I was wondering if we could even go a step further. This many numbers are really hard to interpret. |
So, right side would be green and left side would be red (failure would be treated as zero), and we color scale between them? I'd be fine with that too, I think. I'd probably need to see what it looks like though before final sign off. |
I'd probably have to see it fully to be able to decide if I like it or not. But I'm open to the solution definitely. |
maybe @rmarx can transfer his qvis skills to this |
Something like @marten-seemann's mockup is not too difficult to do with an SVG template. With a minor amount of JavaScript (or potentially just CSS) I can add onhover to show the raw values. But please agree first on the approach :P |
This looks great, except for the C runs. Those should be "distance from ideal" -- basically, (x-5000) -- not simply throughput. The sign matters since the QUIC connection can be too aggressive or too conservative. But yeah, I love the visualizations! Maybe they could be colored based on their closeness to the ideal value? Basically map 0 -> 10M to Red -> Green? One idea is to set: R = 255 - int(BW/10000 * 255) |
We probably need to adjust the scale a bit. Showing 0 - 10000 doesn't really make sense. There's a big difference between an implementation that achieves 8500 and one that achieves 9500. |
We should define acceptable ranges for both the goodput and cross-traffic measurements. Successful values in those ranges would continue to be marked as green on the interop site. Successful values outside of those ranges would be marked as yellow or orange.
At least for now, we should probably go with conservative ranges. IMO, these should be good:
goodput: x >= 7500
cross-traffic: 3500 <= x <= 6500
Ideally, I'd prefer values closer to:
goodput: x >= 9000
cross-traffic: 4250 <= x <= 5750
The text was updated successfully, but these errors were encountered: