Traffic Simulators?

invinceable

Regular Member
Joined
Jul 12, 2008
Messages
427
Reaction score
78
I just want to test a script I have and want to test thousands of clicks a minute. It can be either server based, or desktop based. I could program one, but I was just wondering if maybe someone had one that could test different user agents and all that stuff right out of the box.

Thanks
 
Here you go:

ab is a tool for benchmarking your Apache Hypertext Transfer Protocol (HTTP) server. It is designed to give you an impression of how your current Apache installation performs. This especially shows you how many requests per second your Apache installation is capable of serving.

ab [ -A auth-username:password ] [ -c concurrency ] [ -C cookie-name=value ] [ -d ] [ -e csv-file ] [ -g gnuplot-file ] [ -h ] [ -H custom-header ] [ -i ] [ -k ] [ -n requests ] [ -p POST-file ] [ -P proxy-auth-username:password ] [ -q ] [ -s ] [ -S ] [ -t timelimit ] [ -T content-type ] [ -v verbosity] [ -V ] [ -w ] [ -x <table>-attributes ] [ -X proxy[:port] ] [ -y <tr>-attributes ] [ -z <td>-attributes ] [http://]hostname[:port]/path

I'm using it myself, it comes with apache.
 
Back
Top