Last active
December 7, 2017 10:25
-
-
Save chapter09/21686c824c9990dc0a3e to your computer and use it in GitHub Desktop.
A script for iterate pcap files in directories and calculate average RTT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import os, sys | |
import subprocess | |
# argv[1] analysis directory | |
if len(sys.argv) == 1: | |
print """ | |
- argv[1] analysis directory | |
""" | |
cmd = "tshark -r %s -R \"tcp.analysis.ack_rtt\" \ | |
-e tcp.analysis.ack_rtt -T fields" | |
path = sys.argv[1] | |
for bench in os.listdir(path): | |
sub_path = path + "/" + bench.strip() | |
log = open("./" + bench.strip() + "-rtt-10g", "w") | |
print "Entering" + sub_path | |
for t in os.listdir(sub_path): | |
sub_sub_path = sub_path + "/" + t | |
log.write("====" + t + "\n") | |
print "Entering" + sub_sub_path | |
for f in os.listdir(sub_sub_path): | |
print "Processing" + sub_sub_path + "/" + f | |
proc = subprocess.Popen(cmd%(sub_sub_path + "/" + f), \ | |
shell=True, stdout=subprocess.PIPE) | |
acc = 0 | |
counter = 0 | |
for line in iter(proc.stdout.readline, ""): | |
rtt = float(line.strip()) | |
if rtt > 0: | |
acc += rtt | |
counter += 1 | |
if counter > 0: | |
result = f + " " + str(acc / counter * 1000) # millisecond | |
print result | |
log.write(result + "\n") | |
log.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment