Forum Discussion

Pete_H's avatar
Pete_H
Occasional Contributor
17 years ago

Request level load test metrics

Hi I am running a load test using the SoapUI command prompt tools on a Unix box.  Is there a way to get metrics down to the request level? I'd like to know how long each request takes instead of just the min, max and avrg. 

Any help is greatly appreciated.

3 Replies

  • Hi Pete,

    there is no built-in functionality for this (ie logging every request), I suggest you create a groovy script step after your request that logs this (via the testRunner.results property) as you desire.

    Does that help?

    regards!

    /Ole
    eviware.com
  • Hello!

    You could do something along the lines of:


    for(result in testRunner.results) {
    log.info result.testStep.label + ' took: ' + result.timeTaken + 'ms'
    }


    This prints to the groovy log, but you could modify it to write to a file or something else if that is what is needed.

    Regards,
    Dain
    eviware support