user2066671
user2066671

Reputation: 297

Approach for generating a lot of REST API traffic

I am building a traffic generator to generate stateful REST traffic. My thought is to load up a canned web-based application and just try HTTP queries continuously. However, because I wish to deploy this on small VM's, it would ideal to not to host an actual web service, but some type of simulator. Is there a reference REST stress test server library available for users to write custom REST API wrappers?

Upvotes: 1

Views: 1550

Answers (4)

RocketRaccoon
RocketRaccoon

Reputation: 2609

You may try to Yandex Tank. It could use different load generators (default phantom or jmeter) and provide very useful features in load management and reporting.

Upvotes: 0

Dmitri T
Dmitri T

Reputation: 168197

Depending on the load you want to conduct:

Upvotes: 0

Christian Witts
Christian Witts

Reputation: 11585

You can take a look at Locust which is an open source load generation tool, written in Python.

Upvotes: 3

Pesha
Pesha

Reputation: 87

I think you can use Apache JMeter (http://jmeter.apache.org/) tool to generate HTTP queries to your application.

Upvotes: 4

Related Questions