forked from JosephPatrickCabanilla/support-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
level4-tsung.xml
49 lines (43 loc) · 1.78 KB
/
level4-tsung.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0"?>
<!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsung-1.0.dtd">
<tsung loglevel="notice" version="1.0">
<!-- Client side setup -->
<clients>
<client host="localhost" use_controller_vm="true"/>
</clients>
<!-- Server side setup -->
<servers>
<server host="127.0.0.1" port="3000" type="tcp"></server>
</servers>
<load>
<!-- several arrival phases can be set: for each phase, you can set
the mean inter-arrival time between new clients and the phase
duration -->
<arrivalphase phase="1" duration="5" unit="minute">
<users interarrival="0.5" unit="second"></users>
</arrivalphase>
</load>
<options>
<option type="ts_http" name="user_agent">
<user_agent probability="80">Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050513 Galeon/1.3.21</user_agent>
<user_agent probability="20">Mozilla/5.0 (Windows; U; Windows NT 5.2; fr-FR; rv:1.7.8) Gecko/20050511 Firefox/1.0.4</user_agent>
</option>
</options>
<!-- start a session for a http user. the probability is the
frequency of this type os session. The sum of all session's
probabilities must be 100 -->
<sessions>
<session name="http-example" probability="25" type="ts_http">
<request> <http url="/production" method="GET" version="1.1"></http> </request>
</session>
<session name="http-example" probability="25" type="ts_http">
<request> <http url="/resume" method="GET" version="1.1"></http> </request>
</session>
<session name="http-example" probability="25" type="ts_http">
<request> <http url="/contact" method="GET" version="1.1"></http> </request>
</session>
<session name="http-example" probability="25" type="ts_http">
<request> <http url="/demoreel" method="GET" version="1.1"></http> </request>
</session>
</sessions>
</tsung>