[Swift-commit] r6810 - trunk/libexec/log-processing

ketan at ci.uchicago.edu ketan at ci.uchicago.edu
Thu Aug 8 15:53:22 CDT 2013


Author: ketan
Date: 2013-08-08 15:53:22 -0500 (Thu, 08 Aug 2013)
New Revision: 6810

Modified:
   trunk/libexec/log-processing/plotswiftlogs.ketan
Log:
minor fix

Modified: trunk/libexec/log-processing/plotswiftlogs.ketan
===================================================================
--- trunk/libexec/log-processing/plotswiftlogs.ketan	2013-08-08 20:14:53 UTC (rev 6809)
+++ trunk/libexec/log-processing/plotswiftlogs.ketan	2013-08-08 20:53:22 UTC (rev 6810)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-#usage: ./extract4plots <swift.logfile>
+#usage: ./plotswiftlogs.ketan <swift-logfile.log>
 
 SWIFTLOGFILE=$1
 
@@ -51,16 +51,16 @@
 
 cat << EOF1 > plotit.gp
 set terminal png enhanced
+set nokey
+set output "cumulativeplot.png"
+set ylabel "number of completed jobs"
+set title "Cumulative jobs"
+plot "plot_cumulative.txt" using 1:2 with lines
 set output "activeplot.png"
-set nokey
 set xlabel "Time in sec"
 set ylabel "number of active jobs"
 set title "Active jobs"
 plot "plot_active.txt" using 1:2 with line
-set output "cumulativeplot.png"
-set ylabel "number of completed jobs"
-set title "Cumulative jobs"
-plot "plot_cumulative.txt" using 1:2 with lines
 EOF1
 
 gnuplot plotit.gp 2>/dev/null




More information about the Swift-commit mailing list