diff options
| author | Bjørn Ivar Teigen <[email protected]> | 2023-07-12 10:09:12 +0200 |
|---|---|---|
| committer | Bjørn Ivar Teigen <[email protected]> | 2023-07-12 10:09:12 +0200 |
| commit | db0aea8354eb6f4d9732af5fd1cf0718e86f8f04 (patch) | |
| tree | bef6e3c9bddddf681d74c1037ed5f8c09fa7032f /networkQuality.go | |
| parent | 2a91b1baf26d42d5022e1ca5b5b67402507f6c60 (diff) | |
Addressed pull request comments
* Added units to printout
* Made QualityRequirement and PercentileLatencyPair private
*Removed the hist struct from the SimpleQualityAttenuation struct
(it was only used for testing)
Diffstat (limited to 'networkQuality.go')
| -rw-r--r-- | networkQuality.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/networkQuality.go b/networkQuality.go index 5360666..0fff8a6 100644 --- a/networkQuality.go +++ b/networkQuality.go @@ -851,16 +851,16 @@ func main() { fmt.Printf( `Number of losses: %d Number of samples: %d -Loss: %f -Min: %.6f -Max: %.6f -Mean: %.6f -Variance: %.6f -Standard Deviation: %.6f -PDV(90): %.6f -PDV(99): %.6f -P(90): %.6f -P(99): %.6f +Loss: %f %% +Min: %.6f s +Max: %.6f s +Mean: %.6f s +Variance: %.6f s +Standard Deviation: %.6f s +PDV(90): %.6f s +PDV(99): %.6f s +P(90): %.6f s +P(99): %.6f s RPM: %.0f Gaming QoO: %.0f `, selfRttsQualityAttenuation.GetNumberOfLosses(), |
