You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ju...@apache.org on 2012/10/01 16:24:25 UTC

svn commit: r1392349 - /sling/trunk/performance/plot.sh

Author: justin
Date: Mon Oct  1 14:24:25 2012
New Revision: 1392349

URL: http://svn.apache.org/viewvc?rev=1392349&view=rev
Log:
SLING-2311 - adding working plot.sh

Added:
    sling/trunk/performance/plot.sh   (with props)

Added: sling/trunk/performance/plot.sh
URL: http://svn.apache.org/viewvc/sling/trunk/performance/plot.sh?rev=1392349&view=auto
==============================================================================
--- sling/trunk/performance/plot.sh (added)
+++ sling/trunk/performance/plot.sh Mon Oct  1 14:24:25 2012
@@ -0,0 +1,64 @@
+#!/bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# This is an example Gnuplot script for plotting the performance results
+# produced by the Sling performance test suite. Before you run this
+# script you need to preprocess the individual performance reports.
+
+cat <<HTML >target/report.html
+<html>
+  <head>
+    <title>Sling performance</title>
+  </head>
+  <body>
+    <h1>Sling performance</h1>
+    <p>
+HTML
+
+for dat in */target/*.txt; do
+    rm -f target/`basename "$dat"`
+done
+
+for dat in */target/performance-reports/*.txt; do
+    cat "$dat" >>target/`basename "$dat"`
+done
+
+for dat in target/*.txt; do
+    name=`basename "$dat" .txt`
+    rows=`grep -v "#" "$dat" | wc -l`
+    gnuplot <<PLOT
+set term svg size 800,400
+set xlabel "bundle version"
+set xrange [-1:$rows]
+set ylabel "Time (ms)"
+set yrange [0:]
+set output "target/$name.svg"
+set title "$name"
+plot "$dat" using 0:4:3:5:xtic(1) with yerrorlines notitle
+PLOT
+    convert "target/$name.svg" "target/$name.png"
+    cat <<HTML >>target/report.html
+      <img src="$name.png" alt="$name"><hr align="left" width="800">
+HTML
+done
+
+cat <<HTML >>target/report.html
+    </p>
+  </body>
+</html>
+HTML
+
+echo file://`pwd`/target/report.html

Propchange: sling/trunk/performance/plot.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: sling/trunk/performance/plot.sh
------------------------------------------------------------------------------
    svn:executable = *