Last active
January 24, 2021 14:21
-
-
Save justdoit0823/9cae26ec950ece65b0896a930fd956f7 to your computer and use it in GitHub Desktop.
Simple summary stat with awk.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// min, mean, max, p50, p90, p99, p999 | |
sort -k1 -n|awk '{s[NR]=$1} END {print "min:"s[1], "mean:"s[int(NR * 0.5)], "p90:"s[int(NR * 0.9)], "p95:"s[int(NR * 0.95)], "p99:"s[int(NR * 0.99)], "p999:"s[int(NR * 0.999)], "max:"s[NR]}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment