Just an idea, and probably not the solution that you're after, but you could try doing some post-processing on the log output. By default, JMeter's logging output includes thread group names and numbers. For example, you could probably use awk or grep to pull out the log entries for each group.
There are some useful examples of post-processing at (1) along with some docs pertaining to redirecting to multiple output files with awk at (2). You could use the latter to output each row to a file with the same name as the thread. (1) http://wiki.apache.org/jakarta-jmeter/LogAnalysis (2) http://www.math.utah.edu/docs/info/gawk_7.html#SEC65 On Tue, Jan 13, 2009 at 1:27 PM, nattu <[email protected]> wrote: > > Hi everyone, > > i would like to know is it possible to generate a log file or a report which > shows me execution of individual threads. > > i.,e. if i have 10 Threads, i want to see how each thread is executing > indipendently the same scenario and for the same if i give loop count value > as 10, how do they get executed? > -- > View this message in context: > http://www.nabble.com/Individual-Thread-execution-log-tp21434764p21434764.html > Sent from the JMeter - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

