diff --git a/Tools/Scripts/parsePerformanceMetrics.sh b/Tools/Scripts/parsePerformanceMetrics.sh index 33a4d5a41..49a2259ce 100755 --- a/Tools/Scripts/parsePerformanceMetrics.sh +++ b/Tools/Scripts/parsePerformanceMetrics.sh @@ -13,7 +13,7 @@ NOW=`date -u -Iminutes` # Find all the measurement lines in the file, then strip out the gumph into a CSV-like format. grep ".*measured.*values" $1 | sed -e "s/.*Test Case .*-\[//" -e "s/\]' measured \[/,/" -e "s/\].*values: \[/,/" -e "s/\], performance.*//" -e "s/^/$2,/" \ -e "s/IntegrationTests.ApplicationTests testLaunchPerformance,Duration (AppLaunch), s/launchPerformance/" \ - -e "s/IntegrationTests.LoginTests testLoginFlow/loginPerformance/" \ + -e "s/IntegrationTests.LoginTests testLoginFlow,Clock Monotonic Time, s/loginPerformance/" \ -e "s/^/$NOW,/" # The output should contain fields for the identifier, name, type, unit, then a list of recorded values (normally 5)