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
1
vote
1 answer

I am not able to generate script using jmeter

I am not able to generate script using jmeter. Getting below error. Response code: Response message: Received fatal alert: certificate_unknown **ensure browser is set to accept the JMeter proxy certificate** Can some one help what would be the…
Krishna Murthy
  • 97
  • 5
  • 16
1
vote
1 answer

Jmeter- How to make a request wait until I get a specific response

Request is as : request_a is sent and i get a response as "in progress" Again, request_a is sent and i get a response as "in progress" Again, request_a is sent and i get a response of "complete data" What happening in my target server when its…
Arjun Dev
  • 406
  • 5
  • 16
1
vote
2 answers

Hello, How to extract array of values and set it to next request one by one

How to extract array of values from response and set to next post request in JMETER I tried using JSON extractor but when i set all fields populatring same value. {"status":"success","mainCategories":[{"categoryName":"Comfort &…
Hem
  • 41
  • 2
1
vote
2 answers

how to get header file in csv file in jmeter?

I have created the script in GUI MODE and running the script in not GUI mode and it generates the CSV file but it is not adding header file in the CSV file. How to add it?
surender pal
  • 447
  • 6
  • 15
1
vote
2 answers

How to handle captured dynamic value which is keep on changing their position in jmeter

I captured a dynamic value , but that value position is keep on changing on each running. how to handle it. Ex: Daysrpc61_g1=68 Daysrpc61_g2=98 Daysrpc61_g3=107 Here i need 98 which potion is _g2, but this position will…
Krishna Murthy
  • 97
  • 5
  • 16
1
vote
1 answer

JMeter: user variable to report

I'm having next structure of TG in Jmeter: So I have variable LB_LEVEL and 100 threads. It's value for every user may be different (from 1lv to 23lv e.g.) I try to find a way to make some visual report with this variable, simply I have to show…
1
vote
0 answers

SSL Manager/Key Configuration User in Jmeter

I have a .p12 certificate which i want to use in my JMeter HTTPS request. I have converted this .p12 file into .jks and tried to implement through key configuration but this is not working out and getting I am getting HTTP 403. can anyone tell me…
1
vote
2 answers

Unable to fetch value from JSR223 Sampler

I have a JSR223 Sampler in Jmeter with the following code: import com.jayway.jsonpath.JsonPath import org.apache.commons.lang3.RandomUtils import org.apache.jmeter.samplers.SampleResult def options = JsonPath.read(prev.getResponseDataAsString(),…
Suresh
  • 11
  • 3
1
vote
1 answer

How to pass a set of values from one Jmeter Thread group to another

I'm stuck with a scenario of passing a set of values which I get as the output of one thread group's execution to another thread group. I have been using "Beanshell assertion" to do the same by using the ${**__setProperty**(categoryID,…
a4aravind
  • 1,202
  • 1
  • 14
  • 25
1
vote
1 answer

Implementing Nested Switch Controller in Jmeter

I have a JSR223 Sampler where i am getting two values and based on that two values, i have to make nested Switch controller , vars.put('counts',new groovy.json.JsonSlurper().parse(prev.getResponseData()).options.size() as String) if (Count==1)…
Siddish
  • 97
  • 3
  • 12
1
vote
4 answers

${__time} function output is incorrect

I'm trying to get today's date using time function of jmeter with the format "${__time(yyyy-MM-dd)}" in BeanShell postprocessor. But after executing the Beanshell postprocessor the result shows as "1996". Basically the "time" function is displaying…
Praveen PS
  • 127
  • 2
  • 5
  • 17
1
vote
0 answers

Run multiple threads parallel or sequential in Jmeter

I want to perform performance testing using JMeter, I have the following scenario which I want to record and run 5 min 300 users(Login) -> 20 min 150 users(assessment save) -> 5 min 40 users (Submit assessment) when users log in simultaneously 20…
1
vote
1 answer

Generate Graphs with multiple requests with 500 odd users in Jmeter?

Currently i have nearly 35 request sampler to accomplish a complete task in app using Jmeter and its working perfectly. But however i need to see the Graphs of the same for 500 requests either in Histogram / Pie chart or in line chart to analyse the…
Siddish
  • 97
  • 3
  • 12
1
vote
1 answer

How to restrict user defined variable value to specific thread group in jmeter

In my jmeter script, i have 2 thread group and User Defined Variables respectively. In user defined variables i'm using the name but with different values in each thread group. When i run the jmx file, i see the value of 2nd thread group had…
Praveen PS
  • 127
  • 2
  • 5
  • 17
1
vote
2 answers

jmeter different number of threads for different http request in the same thread

i'm trying to implement a test plan using JMeter. I want to do the following scenario: in the same thread i have 2 HTTP Request HTTP Request login HTTP Request getStudentsName the thing is HTTP Request getStudentsName can't be done unless i run the…
elie
  • 197
  • 2
  • 13