npm install jmeter-statsA CLI written in node for analysing jmeter jtl files. You can pipe a csv formatted jtl file into it, and it will output a .csv with aggregated data.
> npm install -g jmeter-statistics
`Usage
The following commmand will analyse the results.jtl file and produce results into a comma separated file (csv).
`
> cat results.jtl | jmeter-statistics > statistics.csv
`
The csv will contain output similar to the following
`
> cat statistics.csvlabel,requestCount,meanResponseTimeMillis,maxTime,minTime,errorPercentage,apdex,satisfied,tolerating,frustrated,ninetiethPercentile
label1,2,1838,2000,899,0.25,0,1,1,1900
label2,5,9566,11982,8746,35.57,10.29,0,1,9520,46,0,11982
``