Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pragmatictesters/3157a2720afa07a187c70c53a781c9d7 to your computer and use it in GitHub Desktop.
Save pragmatictesters/3157a2720afa07a187c70c53a781c9d7 to your computer and use it in GitHub Desktop.
Remove the rampup and rampdown test results from test result file
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