Thanks for that. I tried them and they worked beautifully (also using Xalan).
/Ritchie -----Original Message----- From: Eid, Jonathan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 19 November 2002 11:58 PM To: JMeter Users List Subject: RE: What to do with graph output? I put together 2 style sheets to produce a report for some testing that I did some time ago. The don't visualize the graphs as images since that would require something more than a stylesheet ( programmatic interaction - e.g. Java). These stylesheets do produce something like the following: ----------------------------------------- CreateWorkorderResults-1.4.1.jtl Number of requests: 95 Minimum response time: 360 milliSeconds Median response time: 438 milliSeconds Maximum response time: 1,937 milliSeconds Average response time: 474 milliSeconds Duration: 43 seconds Duration: 1 minutes Throughput: 0.46 requests per second SLA Threshold is set to: 10,000 milliSeconds Number of requests exceeding SLA Threshold: 0 ----------------------------------------- I used the Xalan processor, but you should be able to use any decent XSLT processor. This script was just a quick way to minimize my typing (Cygwin rocks!). ----------------------------------------------------------- #!/usr/bin/sh if [ $# -lt "3" ]; then echo "USAGE:" echo " $0 <XMLInputFileName> <XSLFileName> <OutputFileName>" exit 1 fi echo Input File: $1 echo Transformation: $2 echo Output File: $3 $JAVA_HOME/bin/java org.apache.xalan.xslt.Process -in $1 -xsl $2 -out $3 ---------------------------------------------------------------------------- CAUTION & DISCLAIMER: The information contained in this e-mail message and/or any accompanying data or documents contain information that is confidential and subject to legal privilege. The information is intended only for the recipient named in this message. The sender is excluded from any liability arising from any further use, dissemination, distribution, transmission or copying of this information and /or accompanying data by the recipient. If you are not the intended recipient, you must immediately erase the information along with all copies of this message and accompanying data and notify the sender. Views expressed in this message are those of the original sender, and are not necessarily the views of WestOne Services. ---------------------------------------------------------------------------- -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

