File: http_tag.xml.in

package info (click to toggle)
tsung 1.8.0-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,932 kB
  • sloc: erlang: 25,486; javascript: 10,347; sh: 3,109; perl: 1,025; makefile: 624; python: 372
file content (48 lines) | stat: -rw-r--r-- 1,289 bytes parent folder | download | duplicates (5)
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
<?xml version="1.0"?>
<!DOCTYPE tsung SYSTEM "@prefix@/share/@PACKAGE_NAME@/@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="localhost" port="80" 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="10" unit="minute">
     <users interarrival="2" unit="second"></users>
   </arrivalphase>
  </load>

 <sessions>
  <session name="images" probability="100" type="ts_http">

    <request>
      <http url="/" method="GET" version="1.1"></http>
    </request>

    <!-- this request will be exclude in the unit test -->
    <request tag="landing">
      <http url="/img/excluded.png" method="GET" version="1.1"></http>
    </request>

    <!-- this request will be exclude in the unit test -->
    <request tag="gif">
      <http url="/img/excluded.gif" method="GET" version="1.1"></http>
    </request>

    <request>
      <http url="/img/not-excluded.png" method="GET" version="1.1"></http>
    </request>


  </session>
 </sessions>
</tsung>