summaryrefslogtreecommitdiff
path: root/get_ping_rate.py
blob: 442f4dc9e3d3fdd8a8dc8750646167817b6df7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import commands
import re

# ORIGINAL, STANDARD MEASURE (TOTALLY RANDOM)
#res = commands.getoutput(
    #'httperf --server localhost --port 8080 --num-calls 5 --num-conns 20 '
    #'--uri /ping  | grep "Connection rate"')

res = commands.getoutput(
    'httperf --server localhost --port 8080 --num-calls 5 --num-conns 10 '
    '--uri /ping  | grep "Connection rate"')
print re.findall('[-+]?([0-9]*\.?[0-9]+)', res)[0]