WIP parsing results

This commit is contained in:
Quentin 2019-09-14 16:26:57 +02:00
parent 9a9033f88b
commit 6da76f50f7
3 changed files with 28 additions and 1 deletions

6
r/thunder_configure.R Normal file
View file

@ -0,0 +1,6 @@
library(ggplot2)
library(sqldf)
library(plyr)
library(cowplot)
thunder_ms <- read.csv("thunder_configure_ms.csv")

View file

@ -224,6 +224,10 @@ thunder_configure_full:
tor2 -f /etc/torrc_guard_2, \
tor2 -f /etc/torrc_guard_2
thunder_configure_full_parse:
@. parse_lib.sh && \
parse_thunder thunder_configure 6
tor_just_many_latencies:
./run-3 \
16,tor_just_many_latencies . \

View file

@ -2,6 +2,10 @@ get_xp() {
grep -rn "identifier=$1" ./out/*/info.txt|grep -Po "^./out/\w+"|grep -Po '\w+$$'|uniq
}
is_measurement_done() {
grep -q 'Measurement done' ./out/$1-$2/res/*.csv
}
extract_us() {
grep -Po '\d+µs' ./out/$1-$2/res/*.csv | grep -Po '\d+'
}
@ -10,9 +14,22 @@ parse_latency() {
echo "run,conf,latency"
get_xp $1 | while read r; do
for i in $(seq 0 1 $2); do
extract_us $r $i | while read l; do
is_measurement_done $r $i && extract_us $r $i | while read l; do
echo $r,$i,$l;
done
done
done
}
parse_thunder() {
echo "run,jmax,links,latency"
get_xp $1 | while read r; do
for i in $(seq 0 1 $2); do
links=$(grep -Po "thunder-server \d+" out/$r-$i/info.txt|grep -Po "\d+$")
jmax=$(grep -Po "thunder-server \d+ \d+" out/$r-$i/info.txt|grep -Po "\d+$")
is_measurement_done $r $i && extract_us $r $i | while read l; do
echo $r,$jmax,$links,$l;
done
done
done
}