Questions tagged [jmeter-4.0]

Use this tag for questions specific to Apache Jmeter 4.0, released on 11 February 2018. 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, functions and fixes bugs.

JMeter 4.0 now supports JAVA 9 (requires at least 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

Removed from this released:

Workbench has been dropped from UI, you can now use Non Test Elements as immediate children of Test Plan

Start time and End date of Thread Group have been removed, see Bug 61549

In distributed testing, mode Hold has been removed.

JMeter artifacts can be downloaded on Maven Central :

 <groupId>org.apache.jmeter</groupId>
 <artifactId>ApacheJMeter</artifactId>
 <version>4.0</version>
402 questions
2
votes
1 answer

how to filter jmeter dashboard that generated using maven project

I am generating a dashboard using jmeter, and I want to restrict warmup requests like (sampler names) setPost, setGet, setPut, and setDelete from showing up in the dashboard. But, these have to be run before running other requests. I tried to…
2
votes
1 answer

JMETER + POST + anti-forgery token

When I try to run performance testing on ASP.net web application, always i am getting either "The anti-forgery cookie token and form field token do not match." or "The anti-forgery token could not be decrypted. If this application is hosted by a…
Pani
  • 125
  • 2
  • 15
2
votes
2 answers

JMeter 4.0 Unable to perform distributed testing after disabling (server.rmi.ssl.disable)

Steps I performed: In Master as well as in Slave : In jmeter.properties file configured server.rmi.ssl.disable=true and uncommented it. Master as well as in Slave : In jmeter.properties file uncommented …
2
votes
2 answers

Problem with a curl parameter in OS Process Sampler

I am trying to perform an HTTP(s) request in a Jmeter test plan using the OS Process Sampler, but I am getting an error on one of the curl parameters. I am running Jmeter on a Windows machine. Here is the original curl command, which works if I run…
user555303
  • 1,146
  • 3
  • 20
  • 44
2
votes
2 answers

How to correctly extract .pem key from request response with JSON extrator

I am using a jmeter JSON extractor for a JSON that looks like this {"type":"rpc","tid":7,"action":"SecurityManager","method":"getAuthenticationKey","result":"-----BEGIN PUBLIC…
Catalin B
  • 59
  • 7
2
votes
0 answers

Not able to generate expected jmeter(4.0) report

I am new to jmeter. I need to perform performance testing in to different sites(one is old application and the other one is the new application). Now for both I am taking the following configurations.Thread group:100 and 500;Ramp Up Time:1 and…
2
votes
1 answer

Unable to connect to Websocket through JMeter plugins

My Requirement: I have to connect to the Websocket through JMeter Once it is connected, I have to send some API requests having JSON data as body to the server and I have to verify the JSON response of it Worked Items: I have tried using Maciej…
2
votes
2 answers

Jmeter: Getting low throughput via HTTP Request Sampler

We are performing load testing via JMeter on our server. We are testing 2 load operations(Registration and Authentication). We have separate plans for both test-plans. Each test-plan consists of 2 HTTP Requests. After the first HTTP request, we are…
ShubhamK
  • 38
  • 5
2
votes
1 answer

JMeter - How to use the jQuery (not CSS) extractor

Using jMeter 4.0, I need to extract the value of an element which I cannot identify directly, but I can identify one of its siblings. I want to use jQuery like so: $("#someId").parent().find(".title") That is garden variety jQuery: 'get the parent…
RKMNRGRT
  • 33
  • 4
2
votes
1 answer

Using Synchronizing Timer by threads with Duration

When I'm using Synchronizing Timer set by threads (Number of Simultaneous Users to Group by) it works well except when using with Thread group's duration, When it's used together the test hang, probably because of Synchronizing issue, as…
Ori Marko
  • 56,308
  • 23
  • 131
  • 233
2
votes
2 answers

Repeat auth token request at given interval using jmeter

I have a JMeter script which tests around 25 different REST API's (this is not a load test but API functional test). All these API's require an OAuth based access token which I generate at the start of the test and save in a variable which is then…
vaibhav misra
  • 135
  • 6
  • 19
2
votes
2 answers

How to send http request without waiting for response from server

We are planning to do load testing of our server and we need to generate heavy load from Jmeter tool. But as per i know, jmeter waits for the response to create another request thread. Is there a way to create http request without waiting for…
Praveen PS
  • 127
  • 2
  • 5
  • 17
2
votes
2 answers

How can I get the environment variable from docker file

How can I get the environment variable from docker file for example I am adding a ENV URL_PATH="google.com" in my dockerfile, so can I get the this URL_PATH in my Jmeter.jmx file with the help of User Defined Variable. On window its working fine…
Sumit Garg
  • 29
  • 8
2
votes
1 answer

Jmeter add custom data to report dashboard

Couple of questions regarding the jmeter report dashboard. I want to modify the index.html.fmkr in the following way: at the "Test and Report informations" i want to add new rows with my custom data. I see that the rows are like so: …
Catalin B
  • 59
  • 7
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
1 2
3
26 27