Created
August 24, 2021 11:51
-
-
Save pragmatictesters/3157a2720afa07a187c70c53a781c9d7 to your computer and use it in GitHub Desktop.
Remove the rampup and rampdown test results from test result file
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
File file = new File("runLoadTest.jtl") | |
def line, noOfLines=0; | |
def starTime | |
def addedLines=0 | |
file.withReader {it-> | |
line= it.readLine() | |
line= it.readLine() | |
starTime = line.split(",").first().toLong() | |
} | |
println "starTime = $starTime" | |
starTime = starTime + 300*1000 | |
println "starTime = $starTime" | |
def endTime=starTime + 3600*1000 | |
println "endTime = $endTime" | |
File outputFile = new File("test-result-filtered.csv") | |
file.withReader { reader -> | |
String currentLine | |
while (( currentLine = reader.readLine()) != null) { | |
noOfLines++ | |
if (noOfLines==1){ | |
continue | |
} | |
def currentTimeStamp = currentLine.split(",").first().toLong() | |
if (currentTimeStamp > starTime && currentTimeStamp <endTime) { | |
println(currentTimeStamp.toString()) | |
outputFile.append(currentLine + "\n") | |
addedLines++ | |
} | |
} | |
} | |
println "addedLines = $addedLines" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment