Mercurial > wikked
annotate benchmarks/Benchmark.conf.sample @ 444:2f68a463cb06
cm: Replace Grunt/RequireJS with Gulp/Browserify.
Yes, I know, this sounds like it's 2014 or something, and cool kids are now
actually on webpack or whatever.
Anyway, besides the change to a `gulpfile`, it also moves all dependencies
over to `npm` (via the `package.json` file), which cleans up the repository
nicely, and replaces awkward JS imports with simpler `require` statements.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 03 Jan 2018 00:51:59 -0800 |
parents | 52bdf765016a |
children |
rev | line source |
---|---|
325 | 1 # main section for the test case |
2 [main] | |
3 title=Wikked Load Tests 1 | |
4 description=Test fetching pages randomly | |
5 url=http://localhost:5000 | |
6 | |
7 # a section for each test | |
8 [test_benchmark] | |
9 description=Access some random URLs | |
10 #username=foo | |
11 #password=bar | |
12 page_names=Main page;Sandbox;Another Sandbox | |
13 nb_times=20 | |
14 | |
15 # a section to configure the test mode | |
16 [ftest] | |
17 log_to = console file | |
18 log_path = logs/test-load1.log | |
19 result_path = results/test-load1.xml | |
20 sleep_time_min = 0 | |
21 sleep_time_max = 0 | |
22 | |
23 # a section to configure the bench mode | |
24 [bench] | |
25 cycles = 10:20:40 | |
26 duration = 10 | |
27 startup_delay = 0.01 | |
28 sleep_time = 0.01 | |
29 cycle_time = 1 | |
30 log_to = | |
31 log_path = logs/bench-load1.log | |
32 result_path = results/bench-load1.xml | |
33 sleep_time_min = 0 | |
34 sleep_time_max = 0.5 | |
35 | |
36 [distribute] | |
326
52bdf765016a
Proper log for distributed tests.
Ludovic Chabant <ludovic@chabant.com>
parents:
325
diff
changeset
|
37 log_path = logs-distributed |
325 | 38 funkload_location=http://pypi.python.org/packages/source/f/funkload/funkload-1.16.1.tar.gz |
39 | |
40 [workers] | |
41 hosts = foo1 foo2 | |
42 | |
43 [foo1] | |
44 host=foo's ip | |
45 username=foo | |
46 ssh_key=foo's key | |
47 | |
48 [foo2] | |
49 host=foo's ip | |
50 username=foo | |
51 ssh_key=foo's key | |
52 |