Skip to content

rlrio/jmeter_log_parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This app parses JMeter csv test log and provides some statistics data.

For now there only 4 methods available:

  • printErrorStatisticsTotal
  • printErrorStatisticsByEachThread
  • printErrorStatisticsByThreadName
  • printErrorStatisticsByURL

The new features maybe added in the future.


This app can write output to the Console or to File if you provide a path to it in program arguments.

To run the program you should run the Main class in your IDE or compile and then run it in the CLI mode.

You have to set parameters such as path to JMeter csv file, path to the output file (optional), part of the name of invoke method like "total" or "thread" or "url" (optional), and number to limit the output lines for example 5 for top 5 errors or 10 for top 10 threads.

If you do not set any other parameters or for the first parameter set <-help> you will see the help message.

If you do not set any other parameters except for the source file path, the program will print data of all available methods to the Console.


Example for CLI command to run the program after compilation:

java Main /Users/user/Documents/all.csv /Users/user/Documents/output.csv url 10


You can also run a jar file which you can find in artifacts directory:

java -jar jmeter_log_parser.jar /Users/user/Documents/all.csv /Users/user/Documents/output.csv url 10

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages