summaryrefslogtreecommitdiff
path: root/doc/system/plots/eval-latency.bash
blob: 684f36b7adf6885708bd498dabea2e94d34cf823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#/usr/bin/env bash

set -eu

mkdir -p plots

do_eval() {
	e=$1
	out=$2
	for x in 0 50 100 150 200; do
		awk -f ~/repos/gnunet/contrib/benchmark/collect.awk results/latency-$x/stats/gnunet-benchmark-urls-*.txt \
			| fgrep "$1" | fgrep "status 200" | awk -v x=$x '{ print x, $10/1000 }' 
	done | sort -n > plots/latency-$out.data
}


awk -f ~/repos/gnunet/contrib/benchmark/collect.awk results/latency-0/stats/gnunet-benchmark-urls-*.txt \
	| fgrep "status 200" | awk '{ print $2, $10/1000 }'  > plots/latency-summary-0.data

awk -f ~/repos/gnunet/contrib/benchmark/collect.awk results/latency-100/stats/gnunet-benchmark-urls-*.txt \
	| fgrep "status 200" | awk '{ print $2, $10/1000 }'  > plots/latency-summary-100.data

do_eval '/refresh/melt' 'refresh-melt'
do_eval '/refresh/reveal' 'refresh-reveal'
do_eval '/deposit' 'deposit'
do_eval '/reserve/withdraw' 'withdraw'
do_eval '/keys' 'keys'

awk -f ~/repos/gnunet/contrib/benchmark/collect.awk results/latency-*/stats/gnunet-benchmark-urls-*.txt \
	| fgrep "status 200" | awk '{ print $2, $16/1000 }' \
	> plots/req-sent.data

awk -f ~/repos/gnunet/contrib/benchmark/collect.awk results/latency-*/stats/gnunet-benchmark-urls-*.txt \
	| fgrep "status 200" | awk '{ print $2, $18/1000 }' \
	> plots/req-received.data