Questions tagged [jmeter-3.2]

Use this tag for questions specific to Apache Jmeter 3.2, released on 14 April 2017. Always specify the jmeter tag as this tag should end up being an alias for 3.2 version.

This release brings a lot of new features and fixes bugs.

Notice JMeter 3.2 requires Java 8 or later to run.

You can read the New and Noteworthy section with some screenshots to illustrate improvements and full list of changes

JMeter artifacts can be downloaded on Maven Central :

 <groupId>org.apache.jmeter</groupId>
 <artifactId>ApacheJMeter</artifactId>
 <version>3.2</version>
308 questions
2
votes
3 answers

Native memory allocation (malloc) failed to allocate 32756 bytes for ChunkPool::allocate

We have a JMeter test which stops in between giving the following error message It runs fine when I run the tests with a load of 100,200 and 300 Users I found one question jmeter test failed with out of memory error but that didn't help to solve…
Praveen Rao Chavan.G
  • 2,772
  • 3
  • 22
  • 33
2
votes
1 answer

JMeter - How to use response assertion as condition of my If controller

I have this structure: In my Response Assertion I defined as JMeter variable this Col2 I can get the result of my query inside the listener or inside the body of my email defined in the SMTP Sampler, this way ${Col2_1} but I cannot use its value…
eeadev
  • 3,662
  • 8
  • 47
  • 100
2
votes
2 answers

How to convey Jmeter to wait for all samplers in a thread group to finish before proceeding to next loop

I have a test plan something like this : Here if you loop at the thread group "ClassCreation", you will see it has 4 samplers where the output of one goes to the others input, so these samplers have to be run sequentially. Moreover I've to repeat…
a4aravind
  • 1,202
  • 1
  • 14
  • 25
2
votes
1 answer

JMeter parameterized tests with large CSV files

I'm using JMeter to run performance tests, but my sample data set is huge. We want to simulate production-like traffic, and in order to do that, we need to have a large variety of requests replayed from production logs. In turn, this causes us to…
Dragan R.
  • 598
  • 4
  • 18
2
votes
1 answer

How can I add a RecordingController in a Jmeter project using Java api?

How can I add a NonTestElement Proxy recording controller in a Jmeter project using Java api? I am trying to do it in THIS GITHUB PROJECT but it is not working. I am able to add a RecordingController, which is a container that stores the recorded…
djangofan
  • 28,471
  • 61
  • 196
  • 289
2
votes
1 answer

How to set variable and its value in Jmeter container like User Parameters using script

I need to set and get variables in Jmeter for API automation. I am using the groovy script for same. I am able to store key-values in Property Files using below code: props.put("shubhamKey", "shubhamValue") I do not want to use the main property as…
Shubham Jain
  • 16,610
  • 15
  • 78
  • 125
2
votes
2 answers

Is it possible to customise a assertion message in jmeter

I would like to customise a assertion message that would write a message in the results jtl file. That message would be outputted in the dashboard report. It only seems that we can write custom messages to the jmeter log and not the results jtl file
Nobody
  • 549
  • 1
  • 10
  • 24
2
votes
2 answers

Jmeter Groovy Assert Keyword is not Causing Assertion Failure in Tree View Listener

Is it possible to get assertion failed in tree view listener using this line of code in JSR223 Assertion? assert 1 == 2 Before in JMeter version 3.1 i could do this without any problem and now its just not working. I know i can use these lines of…
kako lako
  • 33
  • 2
2
votes
1 answer

Jmeter is skipping http request under thread Group but some time its sending http request

I created one project in JMeter and added one thread group This thread group is having 2-3 HTTP request files While sending load test, it's executing 1st HTTP request but other HTTP is not sending.
Ranjan
  • 81
  • 7
2
votes
1 answer

How to resolve updating GUI error in JMeter

I am facing 'problem updating GUI' error in JMeter. I am using web driver sample and when i inserted java script code. this error occurred. JMeter version - 3.3 I have tried with Lower versions as well like: 2.11, 3.0, 3.2 etc. but did not find the…
Gaurav Sharma
  • 23
  • 1
  • 3
2
votes
1 answer

JEMETER Non-GUI : missing class com.thoughtworks.xstream.converters.ConversionException error

I am creating a JMeter test plan from scratch. Here is my code: public static void main(String[] args) throws Exception { StandardJMeterEngine jmeterEngine = new StandardJMeterEngine(); …
user8943456
  • 23
  • 1
  • 4
2
votes
3 answers

Invoking Transaction controller or HTTP sampler from Bean shell/JSR223

Problem statement. Set of transactions(1000+) and need to call or reuse(without duplicating in different if/switch controllers) by invoking from the Beanshell or JSR233. In SoapUI we have groovy script option to break sequential execution and divert…
Load Stitch
  • 167
  • 2
  • 11
2
votes
3 answers

If controller in jMeter thread group

I'm using jp@gc's Ultimate Thread Group and inside the thread group I have a if controller making sure only every other thread/user continues with (${__threadNum}%2==0) There seems to be some issue closing the threads though because after the…
tjarles
  • 113
  • 1
  • 13
2
votes
1 answer

How to send Included Components in JMeter in remote (distributed) mode

I've got JMeter script which contains Include Controllers and I want to run my test in distributed mode. But I'm facing problem that JMeter slaves (remote nodes) can't find those elements which I want to include. INFO o.a.j.c.IncludeController:…
Michal
  • 3,218
  • 2
  • 25
  • 44
2
votes
2 answers

SMTP Sampler executes receives IOExeception while sending message

I'm using jmeter 3.2, I want run a SMTP Sampler in Jmeter where I have done the necessary configuration by adding the javamail file in the lib folder of Jmeter and adding necessary credentials in the mail setting, though when executed I am getting…
Richa Yadav
  • 49
  • 10
1 2
3
20 21