Created
November 29, 2018 10:47
-
-
Save AlexisDucastel/844c7bfa34c4c3849a4cf2511c6c9901 to your computer and use it in GitHub Desktop.
Second scale metrics consumer
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
#!/bin/bash | |
COUNT=$1 | |
tail -n$COUNT /home/ubuntu/metrics.log | \ | |
awk '{M+=$1;U+=$2;N+=$3;S+=$4;I+=$5;T+=$6} END {printf "%d\t=%.2f+%.2f+%.2f+%.2f+%.2f\n",M/NR,U/NR,N/NR,S/NR,I/NR,T/NR}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment