Questions tagged [jmeter-plugins]

JMeter Plugins project is a сustom set of plugins for Apache JMeter, not affiliated with Apache Software Foundation.

JMeter Plugins project is a сustom set of plugins for Apache JMeter, not affiliated with Apache Software Foundation.

1755 questions
3
votes
1 answer

Understanding RESTful Web Service stress test results

I'm trying to stress-test my Spring RESTful Web Service. I run my Tomcat server on a Intel Core 2 Duo notebook, 4 GB of RAM. I know it's not a real server machine, but i've only this and it's only for study purpose. For the test, I run JMeter on a…
user1781028
  • 1,478
  • 4
  • 22
  • 45
3
votes
1 answer

How to run one record across multiple thread groups in JMeter?

I have 50 records(rows) in my CSV file, and I have 10 thread groups which all depend on each other. Example (I'm calling Thread Group TH): TH1 |_some request |_fetching output value TH2 |_request(passing TH1 output value here) |_fetching…
AutomationWorld
  • 75
  • 2
  • 10
2
votes
1 answer

How to send Stomp Frames via JMeter

I'm running ActiveMQ Artemis with stomp port on 61623 and a Spring Boot application. I need to perform a load test against it and want to send simple stomp messages to the broker. Which sampler can I use? Is TCP Sampler suitable here? Or can I use…
Cat
  • 62
  • 7
2
votes
1 answer

Non text response data received in Jmeter sampler response

When I running Jmeter in non gui mode Im getting response error in Jmeter Im using below mentioned settings in the simple data writer in the script I want to know whether server under test has thrown this Non-text response data error or error is…
2
votes
2 answers

JMeter maven plugin - Customize reportgenerator.properties

When I'm using the JMeter Maven plugin, and running mvn jmeter:configure it automatically creates a default bin/reportgenerator.properties file. How can I customize this file? Is there a way to specify some of the properties in the jmeter-maven…
Nicholas DiPiazza
  • 10,029
  • 11
  • 83
  • 152
2
votes
2 answers

org.codehaus.groovy.GroovyBugError: BUG! exception in phase 'semantic analysis' ... Unsupported class file major version 61

The script was running before but after I left it for a while(a month) this error has been popping up. org.codehaus.groovy.GroovyBugError: BUG! exception in phase 'semantic analysis' in source unit 'Script4.groovy' Unsupported class file major…
maxim
  • 23
  • 1
  • 5
2
votes
1 answer

JMeter - OutOfMemoryError How to change heap size in Jmeter?

Recently I run the load test of 5k users for 30 minutes using concurrency thread group. When I want to read file in the Graph Report listener, this out of memory error prompted on the cmd: I tried to modify the heap size to 6GB in notepad++ (my…
2
votes
1 answer

JMeter HTTP Request Slow Response

I am using JMeter to perform load testing on HTTPS site. I created script using Blazemeter Script Recorder Manually, I am able to launch and login to website very efficiently. when I play script HTTP Request is working very slow. It take long time…
Aqdas
  • 868
  • 4
  • 16
  • 57
2
votes
1 answer

Jmeter oracle connection issue

While connecting to oracle database from jmeter, i was receiving a connection error. Cannot create PoolableConnectionFactory (ORA-00604: error occurred at recursive SQL level 1 ORA-01882: timezone region not found ) And now I want to set the…
bbb
  • 149
  • 2
  • 18
2
votes
1 answer

Jmeter 5.3 - Socket Closed Issue with Blazemeter Parallel Controller (0.9)

While testing Blazemeter Parallel Controller (0.9) with Jmeter 5.3 version with multiple https requests in the parallel controller, we are getting the following exception - java.net.SocketException: Socket Closed at…
singhabhisek
  • 57
  • 1
  • 8
2
votes
2 answers

Load testing on jmeter to compare request and response

I am trying to test my Springboot App using jMeter. I want to send multiple request with some JSON payload to receive the response concurrently (via threading). While doing this, in order to check validity of response, I want to keep a log where it…
Jeff
  • 23
  • 4
2
votes
1 answer

Results are not stored with a column names in CSV file after running the Jmeter test through a program (Java Code)

I have successfully run the Jmeter test using a program i.e written in java code. And I am sharing the link of that question's solution here as well => How to set CSV file in java code by running the Jmeter test using a program (Java Code)? Now, I…
user12434952
2
votes
1 answer

How to set CSV file in java code by running the Jmeter test using a program (Java Code)?

I have previously ask the question that how to log the results after running the jmeter test using a java program and then I have got this by myself so I am going to share the link of that question with answer for future references. So here is the…
user12434952
2
votes
2 answers

How can I save a result set after running the Jmeter Test using a program (JAVA CODE)?

I have run the Jmeter Script using Jmeter dependency in eclipse using Java code, fortunately, my script is running fine but now I'm unable to store the result for the same. Can anyone please tell me how can I achieve this ? please see the following…
user12434952
2
votes
2 answers

How to capture the response time of calls to other APIs within an API with Jmeter

I am currently using Jmeter to test the response time for an API. Lets call it API A. If API A calls API B, which is hosted on the same server but different port, is there a way for me to capture the response time of API B using Jmeter? I realize…