Reputation: 1903
I am new to Jmeter. I have a http sampler in Jmeter which has a Beanshell Preprocessor.
Question is how to exclude time taken by Beanshell Preprocessor in http sampler.
Upvotes: 0
Views: 865
Reputation: 34566
By default time taken by Post processor is excluded so nothing to do.
Note that it's much better to use Groovy+JSR223 Elements + cache key instead of BeanShell.
One note about TransactionController, it used to include Post Processing in reported response time but this has been changed in latest versions:
Upvotes: 1