Update of /cvsroot/phpwebsite-comm/scripts/benchmark
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8877
Modified Files:
slashdot.sh
Log Message:
added comments
Index: slashdot.sh
===================================================================
RCS file: /cvsroot/phpwebsite-comm/scripts/benchmark/slashdot.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** slashdot.sh 17 Sep 2004 16:29:37 -0000 1.1
--- slashdot.sh 21 Sep 2004 17:35:13 -0000 1.2
***************
*** 1,3 ****
--- 1,15 ----
#!/bin/bash
+ # PROGRAM: slashdot.sh
+ # PURPOSE: CMS Benchmark Test
+ # 30 simulated users, 5 repetitions, 300 transactions
+ # HISTORY: 2004-09-?? David (neoamphian) Initial programming
+ # 2004-09-21 Mike Noyes (mhnoyes)
+ # RELATED: Flood -- http://httpd.apache.org/test/flood/
+ # JMeter -- http://jakarta.apache.org/jmeter/index.html
+ # Daiquiri -- http://www.omniti.com/~jesus/projects/daiquiri.tar.gz
+ # Siege -- http://www.joedog.org/siege/
+ # Gnuplot -- http://www.gnuplot.info/
+ # GD -- http://www.boutell.com/gd/
+
cat /proc/loadavg | awk ' { print $1 }' >> ${1}
for i in `seq 1 12`;
|