Hmm, also, if you are interested in making new Visualizers, here is a list of classes you'll be interested in:
org.apache.jmeter.visualizers.gui.AbstractVisualizer (you'll be extending this most likely) org.apache.jmeter.visualizers.GraphVisualizer (an example) org.apache.jmeter.samplers.SampleResult (the data you'll have access to) org.apache.jmeter.reporters.ResultCollector (No need to write you're own listener, just use this one, like all the other visualizers do) -Mike > -----Original Message----- > From: Lowe, Jeff [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 14, 2002 1:36 PM > To: 'JMeter Developers List' > Subject: RE: can we do this? > > > Thanks Mike. I'll now begin my new career as a Jmeter developer :-) > -Jeff > > -----Original Message----- > From: Stover, Michael [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 14, 2002 9:42 AM > To: 'JMeter Developers List' > Subject: RE: can we do this? > > > Most of what you list has already been done in current CVS. > Hopefully, I'll > be able to make a milestone release soon so people can try it out. > > Looking through your list, it appears everything is covered except: > > Loop Number > Http Request Size > Http Response Size > Request Name > > You could very easily write your own Visualizer to calculate > the request and > response size and request name, as the info is currently > available. Getting > the Loop Number would be more tricky, and would require some clever > programming on your part (read - a hack, until a standardized way is > developed for getting that type of info). > > -Mike > > > -----Original Message----- > > From: Lowe, Jeff [mailto:[EMAIL PROTECTED]] > > Sent: Friday, June 14, 2002 9:35 AM > > To: '[EMAIL PROTECTED]' > > Subject: can we do this? > > > > > > I'm currently a jmeter user, and considering going down the > > development > > path. Before I start, I'm hoping someone can tell me if it's > > possible to do > > what I want, which is to develop a new Listener, similar to the File > > Reporter, that outputs the following information for each sample: > > > > - Thread Group Name > > > > - Thread Number > > > > - Loop Number > > > > - Http Request Name (i.e. user supplied name) > > > > - Http Request URL Info ( server/ip, port, path, parameters ) > > > > - Http Request Size (in bytes) > > > > - Response Time > > > > - Http Response Size (in bytes) > > > > > > > > Thanks in advance for your help. > > > > > > > > -Jeff > > > > Jeff Lowe > > Software Architect > > CELT Corporation > > 199 Forest St. > > Marlboro, MA 01752 > > > > 508-624-4474 x1237 > > [EMAIL PROTECTED] > > > > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
