On Wed, 9 Mar 2005 17:53:08 -0500, Nathan J. Mehl <[EMAIL PROTECTED]> wrote: > In the immortal words of sebb ([EMAIL PROTECTED]): [if only!] > > > > What I meant was to copy the test plans to the two nodes, and run each > > independently, i.e. > > > > jmeter -n -t mytestplan.jmx -l mytestplan.jtl > > > > on each node independently. > > > > Running the client in non-GUI mode helps, but there is still the extra > > overhead of the RMI process and the sample results being passed back > > to the client. > > Ah, okay. Is there a tool to collate two jtl files produced in this > manner, or is it the old cut-and-paste?
If they are CSV, you can just concatenate them, and then sort on the time - cat(1) and sort(1) on Linux would do. If XML, you'll need to do a bit more work to merge the files, as each has a header: <?xml...> and the sampleResults are wrapped in <testResults> </testResults> Or analyse the files separately and then combine the analysis - e.g. if one manages 10 requests/second and the other 20/s, the total is 30/s. S. > -n > > ----------------------------------------------------------------<[EMAIL > PROTECTED]> > Everyone knows history moves in circles; the surprise is how big the circles > are. > (--Greil > Marcus) > <http://blank.org/memory/>-------------------------------------------------------- > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

