Created
October 14, 2017 03:50
-
-
Save rdeva31/fc2dbf25e24296a82ccf447fc5148ad7 to your computer and use it in GitHub Desktop.
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
puts <<EOS | |
[ 0.000000] event foo.bar START | |
[ 0.500000] some other generic log that should be ignored | |
[ 1.000000] event foo.bar STOP | |
[ 2.000000] event foo.bar START | |
[ 5.000000] event foo.bar STOP | |
[ 6.000000] event foo.qux START | |
[ 7.000000] event foo.qux STOP | |
EOS | |
.split("\n") | |
.lazy | |
.select {|line| line =~ /\[(.*)\] event (.*) (START|STOP)/} | |
.map { {:event => $2, :ts => $1.to_f, :start => $3 == "START"} } | |
.chunk {|event| event[:event]} | |
.map { |chunk| | |
name, events = chunk | |
deltas = events.lazy | |
.each_slice(2) | |
.map {|slice| slice.last[:ts] - slice.first[:ts]} | |
"Event #{name}: max #{deltas.max}, average #{deltas.reduce(&:+) / deltas.size}" | |
} | |
.force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment