load-testing

How to configure Jenkins for distributed load using multiple Jmeter-servers

廉价感情. 提交于 2019-12-11 04:33:40
问题 I use Jmeter to generate a huge load to my web-server. Some slave machines are acted as Jmeter-server, another one - as Jmeter master that coordinates the load and collects statistics from slaves. Now I'm trying to integrate this system to CI (Jenkins). That's how I do it now. I have two separate Jenkins jobs: one of them prepares all slaves by running jmeter-server, another one runs Jmeter-master itself. All is fine with 2nd part: I successfully generate traffic and collect statistics. The

Best tool to do load testing of wicket framework? [closed]

时光毁灭记忆、已成空白 提交于 2019-12-11 03:53:59
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Can you recommend a simple/best tool for an web application developed using Wicket framework? The challenge is interface id is changed

VS2010 Load Test Run Prepare and Verify Once

淺唱寂寞╮ 提交于 2019-12-11 03:44:24
问题 We have a load test that runs of 100 concurrent users. We also have "Prepare" and "Verify" tests that we'd like to run just once at the beginning and end of the whole load test - NOT for each emulated user (*100) in the load test. Can anyone please advise the easiest way to configure this? 回答1: You can create a Load Test Plug-In and use the LoadTestStarting & LoadTestFinished events to call the methods you want: public class Plugin : ILoadTestPlugin { private LoadTest _loadTest; public void

jmter constant video stream

旧城冷巷雨未停 提交于 2019-12-11 02:10:05
问题 I'm using Jmeter to load test a video stream, I can pass the login information but I need to have Jmeter "hold" at a page that serves up a video stream. How can I do this? I have cookie manager already set. 回答1: If video stream doesn't live on your server you don't need to test it at all. For instance, if your site has YouTube frame you need to exclude YouTube domain from embedded resources. If video stream lives at your server - you can use TCP Sampler to request stream If your page contains

Use same row per thread from a CSV data set in JMeter

扶醉桌前 提交于 2019-12-11 01:48:14
问题 I want to make a test plan in JMeter as follows: I have a specific flow with a web server: Req1 Reply for Req1 Req2 Reply for Req2 Req2 Reply for Req2 etc I need to have these run as a single flow i.e. each thread executes this from start to finish ( not Req1 and Req2 send by different threads). I also need to send different parameters in each iteration so I used CSV data set . Problem: I need to send the same row from CSV for all the requests per thread. For example: If I have the following

Visual Studio Load Test redirect URL from Siteminder

六月ゝ 毕业季﹏ 提交于 2019-12-11 01:14:23
问题 I have a security application called Siteminder. It creates unique URLS for every authentication. HTTPS://SITE/idp/**RANDOMURLSTRING**/resumeSAML20/idp/startSSO.ping How can i capture the Unique URL and have the test continue to login. A webtest assumes the next URL in the process. It does not support[Or I don't know how] a unique redirect to a random URL. Does anyone know of a way to handle this case? EDIT: My Solution -- Replace the SessionID with {{SessionID}} in all the URLS and use this

How to load test Server Sent Events?

拈花ヽ惹草 提交于 2019-12-11 01:09:38
问题 I have a small app that sends Server Sent Events. I would like to load test my app so I can benchmark the latency from the time a message is pushed to the time the message is received so I can know when/where the performance breaks down. What tools are available to be able to do this? 回答1: Since Server-Sent Events it is just HTTP you can use siege utility. Here is the example: siege -b -t 1m -c45 http://127.0.0.1:9292/streaming Where: -b benchmark mode i.e. don't wait between connections -t

foreach controller not working correctly with variables

寵の児 提交于 2019-12-11 00:32:46
问题 Im trying to loop over my user defined variables and add them to cookie manager. Here is how I set it up: But when I look at the results it only takes the FIRST var and uses that for ALL of the loops. So HTTP Cookie Manager is only replacing the first var. This behavior is unexpected, have I set something up wrong? I added the debug sampler and I can see the vars are changing but for some reason http cookie manager is not replacing them 回答1: You need to define variable: cookie_matchNr set to

limited threads in soapUI free version

穿精又带淫゛_ 提交于 2019-12-11 00:00:49
问题 We have been using soapUI free version (4.5.1) for a long time in our project to test our web services. We mostly used simple strategy along with different thread counts to check the load of our servers and web services. We used 50, 75, 100 and 150 thread to check how many connections that our web service can handle. We used no delay and therefore, no random to have constant threads. After our servers went down, system experts arrived today and told us that soapUI does not really creates

How to add Status = KO in Gatling script?

霸气de小男生 提交于 2019-12-10 23:49:27
问题 Is it possible to fail my request? I would like to put Status = KO in asLongAs() section. My condition is like, if I get WorkflowFailed = True or Count > 8 then I want to fail that request using Status = KO. I have seen somewhere about session.markAsFailed but how and where to use this? Thanks. Here is the code, class LaunchResources extends Simulation { val scenarioRepeatCount = Integer.getInteger("scenarioRepeatCount", 1).toInt val userCount = Integer.getInteger("userCount", 1).toInt val