summaryrefslogtreecommitdiff
path: root/scripts/sync_stats.gnuplot
diff options
context:
space:
mode:
authordrebs <drebs@riseup.net>2017-11-02 09:28:56 -0200
committerdrebs <drebs@riseup.net>2017-11-02 09:28:56 -0200
commitb36ebc87f449af5ad7a677350a3ccfc7d26cfb1e (patch)
tree6dd6e7a15ace7f7e15815546f43d333f74101050 /scripts/sync_stats.gnuplot
parent01e2a72ce30f0fbb4a027d3246a8ba16e00ae197 (diff)
move client responsiveness tests to a subfolder
Diffstat (limited to 'scripts/sync_stats.gnuplot')
-rwxr-xr-xscripts/sync_stats.gnuplot23
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/sync_stats.gnuplot b/scripts/sync_stats.gnuplot
deleted file mode 100755
index 7fdf29a..0000000
--- a/scripts/sync_stats.gnuplot
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/gnuplot
-
-infile="$0"
-outfile="$1"
-
-# maybe save image file
-if (outfile ne '') \
- set term png size 1000,400; \
- set output "./out/sync-stats.png"
-
-# make the graph beautiful
-set title 'Soledad Sync Phases'
-set xtics 10
-set ytics 50
-set grid
-set key outside
-
-# plot!
-plot for [col=2:6] infile using 1:col with linespoints title columnheader
-
-# pause when not saving image file
-if (outfile eq '') \
- pause -1