Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Completely dependent on jmeter.log
  • Has several metrics to analyze the performance of jmeter itself and "client-end" measures:
    1. requests per minute
    2. average response time
    3. average response time across last X% of requests
    4. average response time across last X% of test duration
    5. mean time between consecutive requests (a nice way to know when things are slowing down)
    6. number of waiting requests (request sent but not received response yet)
    7. grouping response times based on URL regex matching
  • XML of results can be seen at anytime using a simple command: telnet <host_running_jmserver> <port>
  • Results aggregation across hosts running jmeter
  • Dynamic/near-realt-time realtime charting of results using a gnuplot script created dynamically

...

  1. mkdir -p <test_name>/figs
  2. cd <test_name>
  3. perl /path/to/jmclient.pl
  4. Create a html pointing to the png files (I create 1 column/row for each test so that I can compare results across tests.)

There will be some files generated in the dir:

...