From 140ee49ccf0353cd29c04d0d6bd5d4da69e7d0cc Mon Sep 17 00:00:00 2001 From: Determinant Date: Fri, 17 Aug 2018 11:28:07 -0400 Subject: add scripts; move scripts to a new directory --- scripts/thr_hist.py | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 scripts/thr_hist.py (limited to 'scripts/thr_hist.py') diff --git a/scripts/thr_hist.py b/scripts/thr_hist.py new file mode 100644 index 0000000..6f6a43f --- /dev/null +++ b/scripts/thr_hist.py @@ -0,0 +1,50 @@ +import sys +import re +import argparse +from datetime import datetime, timedelta + +def str2datetime(s): + parts = s.split('.') + dt = datetime.strptime(parts[0], "%Y-%m-%d %H:%M:%S") + return dt.replace(microsecond=int(parts[1])) + + +def plot_thr(fname): + import matplotlib.pyplot as plt + x = range(len(values)) + y = values + plt.xlabel(r"time") + plt.ylabel(r"tx/sec") + plt.plot(x, y) + plt.show() + plt.savefig(fname) + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--interval', type=float, default=1, required=False) + parser.add_argument('--output', type=str, default="hist.png", required=False) + args = parser.parse_args() + commit_pat = re.compile('([^[].*) \[hotstuff info\].*got