Or you could deactivate the element.
Here's a short script I wrote a while back to dump out all variables:
Iterator i = vars.getIterator();
while(i.hasNext())
{
Map.Entry me = i.next();
if(String.class.equals(me.getValue().getClass())){
print(me);
}
}
Probably not a good idea to include this in performance tests, but
could be useful for debugging...
S.
On 28/02/06, Lincoln, Adym <[EMAIL PROTECTED]> wrote:
> Check.
>
> I'll try it both ways, but it's kinda nice having the separate BeanShell
> element in the Test Plan. Makes it easy to copy and paste to other
> thread groups...Also, I'm trying to setup a simple "verbose" indicator
> in some of the more complicated test plans. I'm hoping the "verbose"
> variable can then be tested within the BeanShell elements and then
> either output debugging info or not.
>
> thx,
>
> Adym Lincoln
> I/S Corporate - I/S Internal Applications
> 603-245-3744
> Ext : 53744
> [EMAIL PROTECTED]
>
> ...
> It's a bug planet...it's an ugly planet...ever feel like your software
> project is going in the wrong direction.
> ...
>
>
> -----Original Message-----
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Monday, February 27, 2006 5:19 PM
> To: JMeter Users List
> Subject: Re: Echo or print out CSV data...
>
> Just to clarify - you don't need to use BeanShell to use the log
> function; you can use it anywhere that a variable can be used, e.g.
>
> CSV Data set - defines VAR1
> HTTP Sampler uses ${VAR1}
> or you can put
> HTTP Sampler uses ${__log(${VAR1})}
>
> S.
> On 27/02/06, Lincoln, Adym <[EMAIL PROTECTED]> wrote:
> > Yup. It's working. I had the log() stuff in there from the example
> in
> > the docs...I was able to cobble together the following BeanShell
> script
> > to get what I wanted...
> >
> > <snip>
> > log.info( Thread.currentThread().name + " User [ " +
> vars.get("userid")
> > + " ] Issue [ " + vars.get("id-bug") + " ]" );
> > </snip>
> >
> > thx,
> >
> > Adym Lincoln
> > I/S Corporate - I/S Internal Applications
> > 603-245-3744
> > Ext : 53744
> > [EMAIL PROTECTED]
> >
> > ...
> > It's a bug planet...it's an ugly planet...ever feel like your software
> > project is going in the wrong direction.
> > ...
> >
> >
> > -----Original Message-----
> > From: sebb [mailto:[EMAIL PROTECTED]
> > Sent: Monday, February 27, 2006 5:08 PM
> > To: JMeter Users List
> > Subject: Re: Echo or print out CSV data...
> >
> > Have you looked at the log()/logn() functions?
> >
> > http://jakarta.apache.org/jmeter/usermanual/functions.html#__log
> >
> > On 27/02/06, Lincoln, Adym <[EMAIL PROTECTED]> wrote:
> > > Hi all,
> > >
> > > I am trying to figure out a way to "echo/print" the values of my
> > > variables in JMeter. Basically, I have two CSV files that I am
> > reading
> > > data from. One CSV data file is read in by the Thread Group, the
> > other
> > > from a While Controller(). What I would like is a way to echo
> and/or
> > > print the values of the variables in each to get a basic debugging
> of
> > > when and where certain values are being processed.
> > >
> > > I'm currently trying to setup a BeanShell Sampler, but wanted to
> know
> > if
> > > there was a simpler/easier way to do this?
> > >
> > > thx in advance...
> > >
> > > Adym Lincoln
> > > I/S Corporate - I/S Internal Applications
> > > 603-245-3744
> > > Ext : 53744
> > > [EMAIL PROTECTED]
> > >
> > > ...
> > > It's a bug planet...it's an ugly planet...ever feel like your
> software
> > > project is going in the wrong direction.
> > > ...
> > >
> > >
> ---------------------------------------------------------------------
> > > 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]
> >
> > ---------------------------------------------------------------------
> > 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]
>
> ---------------------------------------------------------------------
> 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]