Open source Tool for Stress, Load and Performance

2019-01-16 04:47发布

Possible Duplicate:
How do you stress test a web application?

Currently I have configured a project with cc.net, watin and nunit and now I want to do stress, load, and performance testing of my .net projects. Any idea which opensource tool should I use or cani achive it with same working tools and if yes then how?

18条回答
在下西门庆
2楼-- · 2019-01-16 05:32

Since you're allready familiar with c#. you can try this tool fwptt.sourceforge.net. It basically generates a test class in C# that you can modify as you wish and than run your test with that class.

查看更多
聊天终结者
3楼-- · 2019-01-16 05:36

Having the same problem and I'm using NTime - early days yet but it looks pretty good. Can run multiple threads for tests and other good features will report back here if anyone is interested.

I note that most answers here are for the Java/Web World neither of which match my requirements.

查看更多
Viruses.
4楼-- · 2019-01-16 05:39

Try this : http://sourceforge.net/projects/dieseltest/

It seems the perfect thing.

Jaydeep Dave

查看更多
Deceive 欺骗
5楼-- · 2019-01-16 05:40

I've used openSTA.

This uses a relatively simple script language.

You can easily test web services and write your own scripts.

It allows you to put scripts together in a test in any way you want and configure the number of iterations, the number of users in each iteration, the ramp up time to introduce each new user and the delay between each iteration. Tests can also be scheduled in the future.

It's open source and free.

It produces a number of reports which can be saved to a spreadsheet. We then use a pivot table to easily analyse and graph the results.

查看更多
闹够了就滚
6楼-- · 2019-01-16 05:41

Jmeter hands down. It's the only tool I've ever used that has produced reliable results over and over. Once you get the hang of it, it's an absolute joy to work with and you can simulate a large load with a relatively small number of threads.

查看更多
贪生不怕死
7楼-- · 2019-01-16 05:43

We use Grinder to run load/stress and functional tests against web services. We've never used it for web pages but its supposed to do that as well. You can really beat your servers up by installing the Grinder "agents" on a few machines that then spawn a bunch of processes to hit your site to simulate multiple connections.

The documentation is just OK, but what do you expect for an open source project?

查看更多
登录 后发表回答