add latency test

This commit is contained in:
clowwindy 2014-05-02 10:27:57 +08:00
parent 2a172bea6a
commit d38cdb9b8c

13
test_latency.py Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/python
import sys
import time
before = time.time()
for line in sys.stdin:
if 'HTTP/1.1 ' in line:
diff = time.time() - before
print 'headline %dms' % (diff * 1000)