Questions tagged [jmeter-maven-plugin]

JMeter Maven plugin to automate Apache JMeter tests in Maven.

enter image description here

The JMeter Maven Plugin allows you to integrate Apache JMeter tests as part of your Maven build lifecycle. This makes your tests more portable and easier to run in multiple environments as the only real dependency is a valid Maven install.

242 questions
1
vote
1 answer

user properties not set when executing command mvn jmeter:jmeter

Following is the relevent section of the pom file com.lazerycode.jmeter jmeter-maven-plugin 1.8.1
Srikanth
  • 1,015
  • 12
  • 16
1
vote
0 answers

calling jmeter remotely doesnt terminate the execution thread

When I am calling jmeter remotely through jmeter-maven plugin called by Team City, the Jmeter doesn't terminate the test execution. It starts the .jmx execution, but never exits. It seems to be related to…
DOgl
  • 53
  • 2
  • 9
1
vote
2 answers

JMeter Maven Plugin does not provide test results when using remote host configuration

When starting a JMeter test with the jmeter-maven-plugin with the following configuration... ... com.lazerycode.jmeter
Achim Tromm
  • 386
  • 4
  • 12
1
vote
1 answer

How to have a proper JMeter Maven Tomcat workflow?

I have, a few JMeter scripts, which make HTTP calls to test my own web service, written in Spring. I would like the JMeter scripts to be automatically executed for every build and test if the build is good. So, as suggested at:-…
Praveen Thirukonda
  • 365
  • 1
  • 4
  • 16
0
votes
1 answer

How to run 2 TPS load with multiple https request randomly on a single thread group?

I have to run 2 TPS load with multiple request on a single Threadgroup, Below are my settings : One Tread group named A 7 https request under A How i can achieve 2TPS load ? What will be the Ramp-up Period and No of Treads to run 2 TPS load with 7…
0
votes
1 answer

How to prevent the unexpected delays that occur in Jmeter, when multiple thread groups are executed at a time or even when executed consecutively

For performing a 1Hr Soak Test, I have two thread groups, First thread group to execute GET token and the next thread group to VALIDATE the access token which is generated in the previous thread group's GET token I want to achieve this outcome: GET…
0
votes
2 answers

tag-jmeter-extn Properties file reader on Pom file as dependencies

i'm using the tag-jmeter-extn-1.1 tha tis the Properties file reader plugin. how i can add it on the section dependencies of pom file ? org.apache.activemq
0
votes
2 answers

jMeter System Properties from Pom File

I have to pom file as below to set a 4 JMeter system properties com.lazerycode.jmeter jmeter-maven-plugin ${jmeter-maven-plugin.version}
Luca Ruggeri
  • 121
  • 1
  • 7
0
votes
2 answers

JMeter fails to create new threads because of OutOfMemoryError when testing with 10k+ users

My test makes one POST request then makes N PUT requests where N is the number of users. I also save the responses inside target When testing with 10,000+ users JMeter fails with: Uncaught Exception java.lang.OutOfMemoryError: Java heap space in…
0
votes
1 answer

Selenium with Jmeter on chrome driver is not running

I'm working on Jmeter with selenium but whenever I try to run jmeter with selenium on chrome browser, the browser opens up and closes immediately. On the log of Jmeter I found this error, I have searched all over the internet but couldn't find any…
0
votes
1 answer

How to read the rows from csv file based on the column value in jmeter

What I'm trying to do: I have a csv file and it has around 1k rows, for each thread I need to read the CSV file rows based on the column value to populate the database. The csv file contains "Date" as a column and I need to get the rows based on…
0
votes
1 answer

Jmeter Test abruptly terminates

My jmeter tests abruptly terminated and the timings were random. It’s exactly same as below issue. We have checked all the throughput shaping timer durations and they are fine. Can someone suggest me solution for below. We are running these tests…
0
votes
1 answer

Change Sample Result Save Configuration for Sumary Report with jmeter maven

I have a JMX project with a "Sample Result Save Configuration" for "Sumary Report" as reported in the attached picture. And that JMX project is executed with Jmeter Maven plugin. Now I would handle dynamically the Configuration of report from maven.…
0
votes
1 answer

How to configure filter settings for jp@gc - Synthesis Report in pom.xml

I have imported the "jp@gc - Synthesis Report" plugin in a project jmeter built with maven , but I would set parameters to filter the summary report. For example I would filter only the rows of report starting with "YJ" and excluding those ending…
0
votes
1 answer

Extract Client_secret id from azure key vault URL and pass it as a variable in JMeter

How to get or extract client secret id from Azure key vault URL in JMeter . Suppose key vault url is https://vcloud02vault.vault.azure.net/secrets/RootSecret I tried to hit the URL through JMeter and extract the client_secret id value from the…