42b712144409 — russes02 12 years ago
memuse: fix graphs for overnight runs
1 files changed, 2 insertions(+), 2 deletions(-)

M scripts/memuse.plot
M scripts/memuse.plot +2 -2
@@ 7,7 7,7 @@ fi
 BASE=$1
 DAT=$BASE/mem.dat
 
-awk '/memory/ {print $2","$4","$5","$7}' < $BASE/errs.txt > $DAT
+awk '/memory/ {print $1" "$2","$4","$5","$7}' < $BASE/errs.txt > $DAT
 
 gnuplot <<EOF
 set datafile separator ","

          
@@ 17,7 17,7 @@ set ylabel "Memory (KB)"
 set y2label "Comparisons (#)"
 set xlabel "Time"
 set xdata time  
-set timefmt "%H:%M:%S"
+set timefmt "%Y/%m/%d %H:%M:%S"
 set y2tics
 set xtics format "%H:%M:%S"
 plot '${DAT}' using 1:2 title "Alloc" with points, \