Skip to content

Commit

Permalink
cosmetic changes to the plotted output (#5977)
Browse files Browse the repository at this point in the history
  • Loading branch information
landreev committed Sep 18, 2019
1 parent 8afecdc commit 82b26f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ done > $DATAVERSE_APP_DIR/memory-benchmark-out.txt

# Create a simple plot of page GETs vs. memory utilisation:

grep '^ 0\.00' $DATAVERSE_APP_DIR/memory-benchmark-out.txt | awk '{print (NR*100),$4}' > /tmp/benchmark.data
gplot.pl -type png -outfile $DATAVERSE_APP_DIR/benchmark.png -xlabel 'dataverse page GETs' -ylabel 'oldgen (%)' -title 'Memory Utilisation' /tmp/benchmark.data
grep '^ *[0-9][0-9]*\.[0-9]' ${DATAVERSE_APP_DIR}/memory-benchmark-out.txt | awk '{print (NR/10),$4}' > /tmp/dataverse.xhtml
gplot.pl -type png -outfile ${DATAVERSE_APP_DIR}/benchmark.png -xlabel 'page GETs x1000' -ylabel 'oldgen (%, 2GB total)' -title 'Memory Utilisation, default GC' /tmp/dataverse.xhtml

0 comments on commit 82b26f4

Please sign in to comment.