adding a small stress script

This commit is contained in:
kakwa 2016-09-08 20:44:28 +02:00
parent b47fe2f04b
commit 5093aadd30
1 changed files with 24 additions and 0 deletions

24
tests/stress.py Normal file
View File

@ -0,0 +1,24 @@
#!/usr/bin/env python
import httplib
import time
import os
tsq_path = os.path.join(os.path.dirname(__file__),'example.tsq')
with open(tsq_path) as f:
body = f.read()
counter=0
old_time = time.time()
while True:
h1 = httplib.HTTPConnection('localhost:2020')
h1.request('POST', '/', body, {"Content-Type": "application/timestamp-query"})
response = h1.getresponse()
h1.close()
counter += 1
if counter % 10000 == 0:
new_time = time.time()
print( str(int(10000 / (new_time - old_time))) + " req/s (10000 requests in " + str(new_time - old_time) + " seconds)")
old_time = time.time()