I have been using the org.apache.jmeter.reporters.Filer class (I think) to write out URL's, response times and parameters to a file. That's great, but with multiple threads I would like to be able to add the cookie values so that I can sort on that. Then I can trace a particular "user" and the time for each step.
It seems like I need to get the ThreadGroup object, and from that get the CookieManager object to list the cookie names and values, but I only see how to get the ThreadGroup name from inside my class's sampleOccurred method. And even if I had a ThreadGroup Object I don't see a getConfigElements method on it. Is what I'm trying to do possible? Am I way off base? Thanks, Barry Roberts

