Get time jMeter thread has been running

2019-04-17 09:08发布

Maybe I am just really bad at navigating the JMeter API site.

But lets say I want to find out how long a thread has been running for, in a If Controller or a JSR223 sampler how could I do that? thread group for example doesn't seem to have what I am look for

2条回答
小情绪 Triste *
2楼-- · 2019-04-17 09:37

Maybe, looking into JMeterThread JavaDoc instead. If you use "Scheduler" option of the Thread Group you will be able to use JMeterThread.getStartTime() and JMeterThread.getEndTime() methods.

If you don't use scheduler you could use the following approach:

  1. Add JSR223 Test Element (doesn't really matter which one) to the very beginning of your Thread Group and put the following code into "Script" area:

    ctx.getThread().setStartTime(System.currentTimeMillis())
    
  2. Add another JSR223 Test Element to the end of your Thread Group and use the following code to get current thread duration:

    long started = ctx.getThread().getStartTime()
    
    log.info('Thread duration: ' + (System.currentTimeMillis() - started))
    

Demo:

JMeter Groovy Thread Duration

ctx is a shorthand to JMeterContextService class.

See Apache Groovy - Why and How You Should Use It article for more details on using Groovy in JMeter tests.

查看更多
Luminary・发光体
3楼-- · 2019-04-17 09:40

You can add your test under Transaction Controller

And then in Sampler result you can see Load time: 2771 see Manual

Note: when the check box "Include duration of timer and pre-post processors in generated sample" is checked, the time includes all processing within the controller scope, not just the samples.

查看更多
登录 后发表回答