load-testing

Bees with machine gun using Amazon free tier

社会主义新天地 提交于 2019-12-06 14:53:09
问题 I've been trying to use bees with machine gun without success. As far as I understand, this is just a fabric script that uses AWS to create EC2 instances (bees) in order to perform distributed load tests to a target (website). These are the steps I took: . Went to AWS IAM and created a new user and assigned to a group that has admin permissions: { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "*", "Resource": "*" } ] } . The creation of this user gave me an aws_access

Load test vaadin 7.0.4 return error No UIProvider

ぐ巨炮叔叔 提交于 2019-12-06 14:05:57
I would like to load test a vaadin app with 5000 users. I found this https://vaadin.com/wiki/-/wiki/Main/JMeter%20Testing and trying to emulate with a single user. With the simplest step of Login and Logout, i encounter this error during playback. No UIProvider returned a UI for the request Any idea what is this error regards or how to troubleshoot it? It looks like that jMeter example is for Vaadin 6. Vaadin 7 refactored the servlet class, and the Application class is now the UI class. So instead of that section of the web.xml looking like this: <servlet> <servlet-name>FeatureBrowser</servlet

How can I run a Node-js script in Artillery.i.o without including it in Load test scenario

放肆的年华 提交于 2019-12-06 05:03:31
I am to load test a scenario where user adds a contact in his addressbook. To do this user must first Log-In to his account. I have a Nodejs script ' AutoLogin.js ' that performs Log-In for the user and a json file ' contact.json ' which has necessary configuration and POST request parameters to add contact in addressbook. Artillery runs 'contact.json' file. { "config": { "target": "target url", "https": { "tls": { "rejectunauthorized": false } }, "phases": [ { "duration": 10, "arrivalRate": 2 } ] }, "scenarios": [ { "flow": [ { "post": { "url": "/addContact", "contactInfo": { "Name": "Davion"

VS Web Load test returning 415 Unsupported Media Type though Content-Type is specified as application/json

旧街凉风 提交于 2019-12-06 04:49:43
I am creating a Web Load test using VS. I am testing a service that I created using WebAPI. The WebAPI works well, I am now trying to do performance/load testing on it. Here is a picture that shows how I have set up the test: When I run the test, I get a 415 Unsupported Media Type response back. Also, you can see that it states in the request that the Content-Type is there: When inserting headers, I don't see Content-Type listed as one of the options so I just typed it in. How do I correctly add Content-Type to my load test? From Microsoft's Documentation : Expand the URL node in the editor,

JMeter https proxy recording not working

那年仲夏 提交于 2019-12-06 01:39:49
问题 I am recording a https session of a JSF based web app on JMeter and it's not working. Target application is hosted on: AWS JMeter version: 2.9 r1437961 Browser: Chrome version 29.0.1547.65 Java: java version "1.6.0_27" OpenJDK Runtime Environment (IcedTea6 1.12.5) (6b27-1.12.5-0ubuntu0.12.04.1) OpenJDK Server VM (build 20.0-b12, mixed mode) OS: Ubuntu 12.04 Proxy server config: Port: 8084 Target Controller: Test Plan > Thread Group Capture HTTP headers is checked. HTTP Sample settings: Type:

Visual Studio Cloud Load Test Average Test Time Seems Long

别来无恙 提交于 2019-12-05 19:24:10
I have a WebAPI service that I put together to test throughput hosted in Azure. I have it set up to call Task.Delay with a configurable number (IE webservice/api/endpoint?delay=500). When I run against the endpoint via Fiddler, everything works as expected, delays, etc. I created a Load Test using VS Enterprise and used some of my free cloud load testing minutes to slam it with 500 concurrent users over 2 minutes. After multiple runs of the load test, it says the average test time is roughly 1.64 seconds. I have turned off think times for the test. When I run my request in Fiddler concurrently

Can anyone post an example of how to enable SSL in Tsung?

你说的曾经没有我的故事 提交于 2019-12-05 16:55:45
I'm load testing a CouchDB server from another machine using Tsung, and need to establish a secure connection. Unfortunately, I've not been able to find an example of the syntax in the documentation or online... Any help would be greatly appreciated! In tsung.xml: <servers> <server host="HOSTNAME_HERE" port="443" type="ssl"></server> </servers> References from the current Tsung documentation : 6.2. Clients and Server > Basic setup : Type can be tcp , ssl , udp (for IPv6, use tcp6 , ssl6 or udp6 ; only available in version 1.4.2 and newer) or websocket (only available in version 1.5.0 and newer

Local Load Testing: The load test results database could not be opened

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-05 16:21:08
I am creating some Load tests using VS2012. I can run the tests using a StorageType of "None", but when I change this to a StorageType of "Database" I get the dreaded error The load test results database could not be opened. Check that the load test results database specified by the connect string for your test controller (or local machine) specifies a database that contains the load test schema and that is currently available. For more information, see the Visual Studio help topic 'About the Load Test Results Store'. The connection error was: An error occurred while attempting to create the

How do I load test a RabbitMQ server (Either using JMeter, python or any other tool..)?

安稳与你 提交于 2019-12-05 14:04:14
I have been given access to a RabbitMQ server to do a load test on it. I'm completely new to servers and AMQ protocol. I've been researching online to see what are some different methods. So far I'm investigating two methods. JMeter; I have found this project: https://github.com/jlavallee/JMeter-Rabbit-AMQP#build-dependencies . It gives me a jar file which I can create JMeter AMQP consumer and publisher, but I have no idea what to put in the fields. (virtual host vs host - dunno my ports -..) Python; using Pika. I have a simple sender script which connects from my client to my server and sends

Spring load testing

戏子无情 提交于 2019-12-05 12:44:15
I've implemented a testing unit using spring (mock mvc), and I'm looking for a tool to run this unit in many threads/processes (so it will act as load testing for my server). I've seen applications like the grinder and jmeter but I don't want to re-write the entire unit, but just to use the existing one. Any ideas? JMeter is able to execute existing JUnit tests via JUnit Request sampler, all you need to do is to drop jar(s) with your test along with dependencies somewhere in JMeter classpath and restart JMeter. Once done you'll be able to see your classes and methods in JUnit Request sampler