-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
36 lines (24 loc) · 916 Bytes
/
README
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
require 'rtsung'
rtsung = RTsung.new do
client 'localhost', :vm => true
client 'router', :max_users => 32
client 'db1', :cpu => 2, :ip => '192.168.2.1', :weight => 1
client 'db2', :cpu => 2, :ip => ['192.168.2.3', '192.168.2.4'], :weight => 2
server 'example.com'
server 'www.example.com', :port => 8080
phase
phase 2, :rate => 30
phase 3, 30, :second, { :interval => 2 }
user_agents do
name 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050513 Galeon/1.3.21', :probability => 30
name 'Mozilla/5.0 (Windows; U; Windows NT 5.2; fr-FR; rv:1.7.8) Gecko/20050511 Firefox/1.0.4', :probability => 70
end
session :search do
request '/'
think_time 1..5
request '/signin', :params => { :uniq => true }
think 5
request '/signin', :method => :POST, :params => { :email => '[email protected]', :password => 'ov7Feift' }
end
end
print rtsung.to_xml