You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by Yogesh Rao <yo...@gmail.com> on 2014/07/24 11:34:09 UTC

Summarizer from saveservice.properties not used.

Hi,

I had a quick question on extension of Summariser class as we wanted to
push the information into database (we plan to have the db insert async). I
did notice that there is the saveservice.properties which is available in
/bin directory which is loaded by JMeter, however the summarise entry
defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
properties file
 is never used to create the instance of Summariser within the code for the
non gui version

my question is :-

1. can the saveservice.properties be customized so that jmeter uses the
classes mentioned in properties files instead of the default ones ?
2. If the saveservice.properties is not for customizing can you please let
me know what use does it have.. i tried to search on the importance of this
but couldnt figure out much

Also wanted to know whether the community be intrested in giving the user
customization of summariser  feature.. I would be happy to raise an issue
and also help contribute the same.

We are using the JMeter 2.11 on windows with JDK 7

Thank you!

Regards,
-Yogesh

Re: Summarizer from saveservice.properties not used.

Posted by sebb <se...@gmail.com>.
On 24 July 2014 10:34, Yogesh Rao <yo...@gmail.com> wrote:
> Hi,
>
> I had a quick question on extension of Summariser class as we wanted to
> push the information into database (we plan to have the db insert async). I
> did notice that there is the saveservice.properties which is available in
> /bin directory which is loaded by JMeter, however the summarise entry
> defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
> properties file
>  is never used to create the instance of Summariser within the code for the
> non gui version

That is not the function of the file.

> my question is :-
>
> 1. can the saveservice.properties be customized so that jmeter uses the
> classes mentioned in properties files instead of the default ones ?

Probably, but that is not supported.

> 2. If the saveservice.properties is not for customizing can you please let
> me know what use does it have.. i tried to search on the importance of this
> but couldnt figure out much

The saveservice.properties file is used to provide shorthand class
names for some JMX file attributes.
It tells XStream how to (de)serialize the classes in the test plan.

It is intended for JMeter internal usage only.

> Also wanted to know whether the community be intrested in giving the user
> customization of summariser  feature.. I would be happy to raise an issue
> and also help contribute the same.
>
> We are using the JMeter 2.11 on windows with JDK 7
>
> Thank you!
>
> Regards,
> -Yogesh

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: Summarizer from saveservice.properties not used.

Posted by sebb <se...@gmail.com>.
http://jmeter.apache.org/extending/jmeter_tutorial.pdf

On 24 July 2014 15:37, Yogesh Rao <yo...@gmail.com> wrote:
> HI Sebb,
>
> I saw the listeners which you mentioned. please correct my understanding
> here ... I will have to write a class which implements TestStateListener
> and SampleListener and NoThreadClone. However what i am not sure is how do
> i plug it with JMeter... My understanding of the code leads to an intrusive
> way where i overwrite few sections of the codebase and build JMeter code
> and then run.. is my understanding right here ? or is there a seamless way
> i can plug-in the new listener can you give me some pointers ?
>
> Thanks in advance ...
>
> Regards,
> -Yogesh
>
>
> On Thu, Jul 24, 2014 at 5:49 PM, Yogesh Rao <yo...@gmail.com> wrote:
>
>> Hello Shmuel,
>>
>> The approach sounds intresting will investigate further...
>>
>> I am also looking at custom listener and post processors to see if can
>> help us
>>
>> Regards,
>> -Yogesh
>>
>> On Thursday, July 24, 2014, Shmuel Krakower <sh...@gmail.com> wrote:
>>
>>> One other approach which someone previously mentioned in this list is to
>>> fetch via external tool the jtl file as it is being written on file system
>>> to your database...
>>>
>>> www.beatsoo.org - free application performance monitoring from world wide
>>> locations.
>>> On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yo...@gmail.com> wrote:
>>>
>>> > Sebb,
>>> >
>>> > would such a feature i.e, able to customise Summariser be desired?
>>> >
>>> > Shmuel,
>>> >
>>> > You approach is certainly something which we can think on.. but we are
>>> > planning to retrieve realtime results on the tests from JMeter hence
>>> were
>>> > thinking on extending Summariser. Is there anyother plugin / approach
>>> which
>>> > you are aware of which can help us achieve the same?
>>> >
>>> > Thank you for the prompt reply guys!
>>> >
>>> > Regards,
>>> > -Yogesh
>>> >
>>> > Regards,
>>> > -Yogesh
>>> >
>>> >
>>> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com>
>>> > wrote:
>>> >
>>> > > Hi,
>>> > > I've created in the past a saveservice implementation that puts
>>> results
>>> > in
>>> > > MongoDB with the NONE write concern (almost async), but it was ugly
>>> code
>>> > > and later on I figured that I don't actually want to save ALL samplers
>>> > back
>>> > > into DB.
>>> > >
>>> > > What I end up doing, is running the JMeter Plugins CMD that summarize
>>> > > results, after a load test is finished.
>>> > > So you get a nice CSV data table, like
>>> > >
>>> > >
>>> >
>>> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
>>> > > Then I just parse it and push this into DB (mongodb).
>>> > >
>>> > > Shmuel Krakower.
>>> > > www.Beatsoo.org - re-use your jmeter scripts for application
>>> performance
>>> > > monitoring from worldwide locations for free.
>>> > >
>>> > >
>>> > > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com>
>>> wrote:
>>> > >
>>> > > > Hi,
>>> > > >
>>> > > > I had a quick question on extension of Summariser class as we
>>> wanted to
>>> > > > push the information into database (we plan to have the db insert
>>> > > async). I
>>> > > > did notice that there is the saveservice.properties which is
>>> available
>>> > in
>>> > > > /bin directory which is loaded by JMeter, however the summarise
>>> entry
>>> > > > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
>>> > > > properties file
>>> > > >  is never used to create the instance of Summariser within the code
>>> for
>>> > > the
>>> > > > non gui version
>>> > > >
>>> > > > my question is :-
>>> > > >
>>> > > > 1. can the saveservice.properties be customized so that jmeter uses
>>> the
>>> > > > classes mentioned in properties files instead of the default ones ?
>>> > > > 2. If the saveservice.properties is not for customizing can you
>>> please
>>> > > let
>>> > > > me know what use does it have.. i tried to search on the importance
>>> of
>>> > > this
>>> > > > but couldnt figure out much
>>> > > >
>>> > > > Also wanted to know whether the community be intrested in giving the
>>> > user
>>> > > > customization of summariser  feature.. I would be happy to raise an
>>> > issue
>>> > > > and also help contribute the same.
>>> > > >
>>> > > > We are using the JMeter 2.11 on windows with JDK 7
>>> > > >
>>> > > > Thank you!
>>> > > >
>>> > > > Regards,
>>> > > > -Yogesh
>>> > > >
>>> > >
>>> >
>>>
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: Summarizer from saveservice.properties not used.

Posted by Yogesh Rao <yo...@gmail.com>.
Thanks sebb!

Will do the needful...

Regards,
-Yogesh

On Monday, July 28, 2014, sebb <se...@gmail.com> wrote:

> On 28 July 2014 17:08, Yogesh Rao <yogu13@gmail.com <javascript:;>> wrote:
> > Hi,
> >
> > I did look at building plugins and tried building a sample to check it
> > out... it looks like i will have to add the listener to the .jmx for it
> to
> > get invoked which is something we are trying to avoid as we wanted the
> code
> > to be executed for all the .jmx files executed using JMeter (and remove
> the
> > dependency of it being added manually for all .jmx). We are certain that
> > JMeter would be running in a non-gui mode and hence were looking out for
> > solutions where Summariser could be customisable...
> >
> > So giving a customisable Summariser option be desired in JMeter ? if yes
> i
> > can raise a issue and happy to contribute as well.
>
> As already mentioned, please start a new thread to discuss this.
>
> > Regards,
> > -Yogesh
> >
> >
> >
> > My understanding is
> > Wanted to know can this plugin be
> >
> > On Thursday, July 24, 2014, Deepak Shetty <shettyd@gmail.com
> <javascript:;>> wrote:
> >
> >> or you could just write code in java and invoke it from a beanshell
> >> listener (though i second what was told to you previously - its easier
> to
> >> load the the .jtl/.csv result of a test run into a DB)
> >>
> >>
> >> On Thu, Jul 24, 2014 at 7:37 AM, Yogesh Rao <yogu13@gmail.com
> <javascript:;>> wrote:
> >>
> >> > HI Sebb,
> >> >
> >> > I saw the listeners which you mentioned. please correct my
> understanding
> >> > here ... I will have to write a class which implements
> TestStateListener
> >> > and SampleListener and NoThreadClone. However what i am not sure is
> how
> >> do
> >> > i plug it with JMeter... My understanding of the code leads to an
> >> intrusive
> >> > way where i overwrite few sections of the codebase and build JMeter
> code
> >> > and then run.. is my understanding right here ? or is there a seamless
> >> way
> >> > i can plug-in the new listener can you give me some pointers ?
> >> >
> >> > Thanks in advance ...
> >> >
> >> > Regards,
> >> > -Yogesh
> >> >
> >> >
> >> > On Thu, Jul 24, 2014 at 5:49 PM, Yogesh Rao <yogu13@gmail.com
> <javascript:;>> wrote:
> >> >
> >> > > Hello Shmuel,
> >> > >
> >> > > The approach sounds intresting will investigate further...
> >> > >
> >> > > I am also looking at custom listener and post processors to see if
> can
> >> > > help us
> >> > >
> >> > > Regards,
> >> > > -Yogesh
> >> > >
> >> > > On Thursday, July 24, 2014, Shmuel Krakower <shmulikk@gmail.com
> <javascript:;>>
> >> wrote:
> >> > >
> >> > >> One other approach which someone previously mentioned in this list
> is
> >> to
> >> > >> fetch via external tool the jtl file as it is being written on file
> >> > system
> >> > >> to your database...
> >> > >>
> >> > >> www.beatsoo.org - free application performance monitoring from
> world
> >> > wide
> >> > >> locations.
> >> > >> On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yogu13@gmail.com
> <javascript:;>> wrote:
> >> > >>
> >> > >> > Sebb,
> >> > >> >
> >> > >> > would such a feature i.e, able to customise Summariser be
> desired?
> >> > >> >
> >> > >> > Shmuel,
> >> > >> >
> >> > >> > You approach is certainly something which we can think on.. but
> we
> >> are
> >> > >> > planning to retrieve realtime results on the tests from JMeter
> hence
> >> > >> were
> >> > >> > thinking on extending Summariser. Is there anyother plugin /
> >> approach
> >> > >> which
> >> > >> > you are aware of which can help us achieve the same?
> >> > >> >
> >> > >> > Thank you for the prompt reply guys!
> >> > >> >
> >> > >> > Regards,
> >> > >> > -Yogesh
> >> > >> >
> >> > >> > Regards,
> >> > >> > -Yogesh
> >> > >> >
> >> > >> >
> >> > >> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <
> >> shmulikk@gmail.com <javascript:;>>
> >> > >> > wrote:
> >> > >> >
> >> > >> > > Hi,
> >> > >> > > I've created in the past a saveservice implementation that puts
> >> > >> results
> >> > >> > in
> >> > >> > > MongoDB with the NONE write concern (almost async), but it was
> >> ugly
> >> > >> code
> >> > >> > > and later on I figured that I don't actually want to save ALL
> >> > samplers
> >> > >> > back
> >> > >> > > into DB.
> >> > >> > >
> >> > >> > > What I end up doing, is running the JMeter Plugins CMD that
> >> > summarize
> >> > >> > > results, after a load test is finished.
> >> > >> > > So you get a nice CSV data table, like
> >> > >> > >
> >> > >> > >
> >> > >> >
> >> > >>
> >> >
> >>
> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
> >> > >> > > Then I just parse it and push this into DB (mongodb).
> >> > >> > >
> >> > >> > > Shmuel Krakower.
> >> > >> > > www.Beatsoo.org - re-use your jmeter scripts for application
> >> > >> performance
> >> > >> > > monitoring from worldwide locations for free.
> >> > >> > >
> >> > >> > >
> >> > >> > > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yogu13@gmail.com
> <javascript:;>>
> >> > >> wrote:
> >> > >> > >
> >> > >> > > > Hi,
> >> > >> > > >
> >> > >> > > > I had a quick question on extension of Summariser class as we
> >> > >> wanted to
> >> > >> > > > push the information into database (we plan to have the db
> >> insert
> >> > >> > > async). I
> >> > >> > > > did notice that there is the saveservice.properties which is
> >> > >> available
> >> > >> > in
> >> > >> > > > /bin directory which is loaded by JMeter, however the
> summarise
> >> > >> entry
> >> > >> > > > defined "Summariser=org.apache.jmeter.reporters.Summariser"
> in
> >> the
> >> > >> > > > properties file
> >> > >> > > >  is never used to create the instance of Summariser within
> the
> >> > code
> >> > >> for
> >> > >> > > the
> >> > >> > > > non gui version
> >> > >> > > >
> >> > >> > > > my question is :-
> >> > >> > > >
> >> > >> > > > 1. can the saveservice.properties be customized so that
> jmeter
> >> > uses
> >> > >> the
> >> > >> > > > classes mentioned in properties files instead of the default
> >> ones
> >> > ?
> >> > >> > > > 2. If the saveservice.properties is not for customizing can
> you
> >> > >> please
> >> > >> > > let
> >> > >> > > > me know what use does it have.. i tried to search on the
> >> > importance
> >> > >> of
> >> > >> > > this
> >> > >> > > > but couldnt figure out much
> >> > >> > > >
> >> > >> > > > Also wanted to know whether the community be intrested in
> giving
> >> > the
> >> > >> > user
> >> > >> > > > customization of summariser  feature.. I would be happy to
> raise
> >> > an
> >> > >> > issue
> >> > >> > > > and also help contribute the same.
> >> > >> > > >
> >> > >> > > > We are using the JMeter 2.11 on windows with JDK 7
> >> > >> > > >
> >> > >> > > > Thank you!
> >> > >> > > >
> >> > >> > > > Regards,
> >> > >> > > > -Yogesh
> >> > >> > > >
> >> > >> > >
> >> > >> >
> >> > >>
> >> > >
> >> >
> >>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org <javascript:;>
> For additional commands, e-mail: user-help@jmeter.apache.org
> <javascript:;>
>
>

Re: Summarizer from saveservice.properties not used.

Posted by sebb <se...@gmail.com>.
On 28 July 2014 17:08, Yogesh Rao <yo...@gmail.com> wrote:
> Hi,
>
> I did look at building plugins and tried building a sample to check it
> out... it looks like i will have to add the listener to the .jmx for it to
> get invoked which is something we are trying to avoid as we wanted the code
> to be executed for all the .jmx files executed using JMeter (and remove the
> dependency of it being added manually for all .jmx). We are certain that
> JMeter would be running in a non-gui mode and hence were looking out for
> solutions where Summariser could be customisable...
>
> So giving a customisable Summariser option be desired in JMeter ? if yes i
> can raise a issue and happy to contribute as well.

As already mentioned, please start a new thread to discuss this.

> Regards,
> -Yogesh
>
>
>
> My understanding is
> Wanted to know can this plugin be
>
> On Thursday, July 24, 2014, Deepak Shetty <sh...@gmail.com> wrote:
>
>> or you could just write code in java and invoke it from a beanshell
>> listener (though i second what was told to you previously - its easier to
>> load the the .jtl/.csv result of a test run into a DB)
>>
>>
>> On Thu, Jul 24, 2014 at 7:37 AM, Yogesh Rao <yo...@gmail.com> wrote:
>>
>> > HI Sebb,
>> >
>> > I saw the listeners which you mentioned. please correct my understanding
>> > here ... I will have to write a class which implements TestStateListener
>> > and SampleListener and NoThreadClone. However what i am not sure is how
>> do
>> > i plug it with JMeter... My understanding of the code leads to an
>> intrusive
>> > way where i overwrite few sections of the codebase and build JMeter code
>> > and then run.. is my understanding right here ? or is there a seamless
>> way
>> > i can plug-in the new listener can you give me some pointers ?
>> >
>> > Thanks in advance ...
>> >
>> > Regards,
>> > -Yogesh
>> >
>> >
>> > On Thu, Jul 24, 2014 at 5:49 PM, Yogesh Rao <yo...@gmail.com> wrote:
>> >
>> > > Hello Shmuel,
>> > >
>> > > The approach sounds intresting will investigate further...
>> > >
>> > > I am also looking at custom listener and post processors to see if can
>> > > help us
>> > >
>> > > Regards,
>> > > -Yogesh
>> > >
>> > > On Thursday, July 24, 2014, Shmuel Krakower <sh...@gmail.com>
>> wrote:
>> > >
>> > >> One other approach which someone previously mentioned in this list is
>> to
>> > >> fetch via external tool the jtl file as it is being written on file
>> > system
>> > >> to your database...
>> > >>
>> > >> www.beatsoo.org - free application performance monitoring from world
>> > wide
>> > >> locations.
>> > >> On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yo...@gmail.com> wrote:
>> > >>
>> > >> > Sebb,
>> > >> >
>> > >> > would such a feature i.e, able to customise Summariser be desired?
>> > >> >
>> > >> > Shmuel,
>> > >> >
>> > >> > You approach is certainly something which we can think on.. but we
>> are
>> > >> > planning to retrieve realtime results on the tests from JMeter hence
>> > >> were
>> > >> > thinking on extending Summariser. Is there anyother plugin /
>> approach
>> > >> which
>> > >> > you are aware of which can help us achieve the same?
>> > >> >
>> > >> > Thank you for the prompt reply guys!
>> > >> >
>> > >> > Regards,
>> > >> > -Yogesh
>> > >> >
>> > >> > Regards,
>> > >> > -Yogesh
>> > >> >
>> > >> >
>> > >> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <
>> shmulikk@gmail.com>
>> > >> > wrote:
>> > >> >
>> > >> > > Hi,
>> > >> > > I've created in the past a saveservice implementation that puts
>> > >> results
>> > >> > in
>> > >> > > MongoDB with the NONE write concern (almost async), but it was
>> ugly
>> > >> code
>> > >> > > and later on I figured that I don't actually want to save ALL
>> > samplers
>> > >> > back
>> > >> > > into DB.
>> > >> > >
>> > >> > > What I end up doing, is running the JMeter Plugins CMD that
>> > summarize
>> > >> > > results, after a load test is finished.
>> > >> > > So you get a nice CSV data table, like
>> > >> > >
>> > >> > >
>> > >> >
>> > >>
>> >
>> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
>> > >> > > Then I just parse it and push this into DB (mongodb).
>> > >> > >
>> > >> > > Shmuel Krakower.
>> > >> > > www.Beatsoo.org - re-use your jmeter scripts for application
>> > >> performance
>> > >> > > monitoring from worldwide locations for free.
>> > >> > >
>> > >> > >
>> > >> > > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com>
>> > >> wrote:
>> > >> > >
>> > >> > > > Hi,
>> > >> > > >
>> > >> > > > I had a quick question on extension of Summariser class as we
>> > >> wanted to
>> > >> > > > push the information into database (we plan to have the db
>> insert
>> > >> > > async). I
>> > >> > > > did notice that there is the saveservice.properties which is
>> > >> available
>> > >> > in
>> > >> > > > /bin directory which is loaded by JMeter, however the summarise
>> > >> entry
>> > >> > > > defined "Summariser=org.apache.jmeter.reporters.Summariser" in
>> the
>> > >> > > > properties file
>> > >> > > >  is never used to create the instance of Summariser within the
>> > code
>> > >> for
>> > >> > > the
>> > >> > > > non gui version
>> > >> > > >
>> > >> > > > my question is :-
>> > >> > > >
>> > >> > > > 1. can the saveservice.properties be customized so that jmeter
>> > uses
>> > >> the
>> > >> > > > classes mentioned in properties files instead of the default
>> ones
>> > ?
>> > >> > > > 2. If the saveservice.properties is not for customizing can you
>> > >> please
>> > >> > > let
>> > >> > > > me know what use does it have.. i tried to search on the
>> > importance
>> > >> of
>> > >> > > this
>> > >> > > > but couldnt figure out much
>> > >> > > >
>> > >> > > > Also wanted to know whether the community be intrested in giving
>> > the
>> > >> > user
>> > >> > > > customization of summariser  feature.. I would be happy to raise
>> > an
>> > >> > issue
>> > >> > > > and also help contribute the same.
>> > >> > > >
>> > >> > > > We are using the JMeter 2.11 on windows with JDK 7
>> > >> > > >
>> > >> > > > Thank you!
>> > >> > > >
>> > >> > > > Regards,
>> > >> > > > -Yogesh
>> > >> > > >
>> > >> > >
>> > >> >
>> > >>
>> > >
>> >
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: Summarizer from saveservice.properties not used.

Posted by Yogesh Rao <yo...@gmail.com>.
Hi,

I did look at building plugins and tried building a sample to check it
out... it looks like i will have to add the listener to the .jmx for it to
get invoked which is something we are trying to avoid as we wanted the code
to be executed for all the .jmx files executed using JMeter (and remove the
dependency of it being added manually for all .jmx). We are certain that
JMeter would be running in a non-gui mode and hence were looking out for
solutions where Summariser could be customisable...

So giving a customisable Summariser option be desired in JMeter ? if yes i
can raise a issue and happy to contribute as well.

Regards,
-Yogesh



My understanding is
Wanted to know can this plugin be

On Thursday, July 24, 2014, Deepak Shetty <sh...@gmail.com> wrote:

> or you could just write code in java and invoke it from a beanshell
> listener (though i second what was told to you previously - its easier to
> load the the .jtl/.csv result of a test run into a DB)
>
>
> On Thu, Jul 24, 2014 at 7:37 AM, Yogesh Rao <yo...@gmail.com> wrote:
>
> > HI Sebb,
> >
> > I saw the listeners which you mentioned. please correct my understanding
> > here ... I will have to write a class which implements TestStateListener
> > and SampleListener and NoThreadClone. However what i am not sure is how
> do
> > i plug it with JMeter... My understanding of the code leads to an
> intrusive
> > way where i overwrite few sections of the codebase and build JMeter code
> > and then run.. is my understanding right here ? or is there a seamless
> way
> > i can plug-in the new listener can you give me some pointers ?
> >
> > Thanks in advance ...
> >
> > Regards,
> > -Yogesh
> >
> >
> > On Thu, Jul 24, 2014 at 5:49 PM, Yogesh Rao <yo...@gmail.com> wrote:
> >
> > > Hello Shmuel,
> > >
> > > The approach sounds intresting will investigate further...
> > >
> > > I am also looking at custom listener and post processors to see if can
> > > help us
> > >
> > > Regards,
> > > -Yogesh
> > >
> > > On Thursday, July 24, 2014, Shmuel Krakower <sh...@gmail.com>
> wrote:
> > >
> > >> One other approach which someone previously mentioned in this list is
> to
> > >> fetch via external tool the jtl file as it is being written on file
> > system
> > >> to your database...
> > >>
> > >> www.beatsoo.org - free application performance monitoring from world
> > wide
> > >> locations.
> > >> On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yo...@gmail.com> wrote:
> > >>
> > >> > Sebb,
> > >> >
> > >> > would such a feature i.e, able to customise Summariser be desired?
> > >> >
> > >> > Shmuel,
> > >> >
> > >> > You approach is certainly something which we can think on.. but we
> are
> > >> > planning to retrieve realtime results on the tests from JMeter hence
> > >> were
> > >> > thinking on extending Summariser. Is there anyother plugin /
> approach
> > >> which
> > >> > you are aware of which can help us achieve the same?
> > >> >
> > >> > Thank you for the prompt reply guys!
> > >> >
> > >> > Regards,
> > >> > -Yogesh
> > >> >
> > >> > Regards,
> > >> > -Yogesh
> > >> >
> > >> >
> > >> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <
> shmulikk@gmail.com>
> > >> > wrote:
> > >> >
> > >> > > Hi,
> > >> > > I've created in the past a saveservice implementation that puts
> > >> results
> > >> > in
> > >> > > MongoDB with the NONE write concern (almost async), but it was
> ugly
> > >> code
> > >> > > and later on I figured that I don't actually want to save ALL
> > samplers
> > >> > back
> > >> > > into DB.
> > >> > >
> > >> > > What I end up doing, is running the JMeter Plugins CMD that
> > summarize
> > >> > > results, after a load test is finished.
> > >> > > So you get a nice CSV data table, like
> > >> > >
> > >> > >
> > >> >
> > >>
> >
> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
> > >> > > Then I just parse it and push this into DB (mongodb).
> > >> > >
> > >> > > Shmuel Krakower.
> > >> > > www.Beatsoo.org - re-use your jmeter scripts for application
> > >> performance
> > >> > > monitoring from worldwide locations for free.
> > >> > >
> > >> > >
> > >> > > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com>
> > >> wrote:
> > >> > >
> > >> > > > Hi,
> > >> > > >
> > >> > > > I had a quick question on extension of Summariser class as we
> > >> wanted to
> > >> > > > push the information into database (we plan to have the db
> insert
> > >> > > async). I
> > >> > > > did notice that there is the saveservice.properties which is
> > >> available
> > >> > in
> > >> > > > /bin directory which is loaded by JMeter, however the summarise
> > >> entry
> > >> > > > defined "Summariser=org.apache.jmeter.reporters.Summariser" in
> the
> > >> > > > properties file
> > >> > > >  is never used to create the instance of Summariser within the
> > code
> > >> for
> > >> > > the
> > >> > > > non gui version
> > >> > > >
> > >> > > > my question is :-
> > >> > > >
> > >> > > > 1. can the saveservice.properties be customized so that jmeter
> > uses
> > >> the
> > >> > > > classes mentioned in properties files instead of the default
> ones
> > ?
> > >> > > > 2. If the saveservice.properties is not for customizing can you
> > >> please
> > >> > > let
> > >> > > > me know what use does it have.. i tried to search on the
> > importance
> > >> of
> > >> > > this
> > >> > > > but couldnt figure out much
> > >> > > >
> > >> > > > Also wanted to know whether the community be intrested in giving
> > the
> > >> > user
> > >> > > > customization of summariser  feature.. I would be happy to raise
> > an
> > >> > issue
> > >> > > > and also help contribute the same.
> > >> > > >
> > >> > > > We are using the JMeter 2.11 on windows with JDK 7
> > >> > > >
> > >> > > > Thank you!
> > >> > > >
> > >> > > > Regards,
> > >> > > > -Yogesh
> > >> > > >
> > >> > >
> > >> >
> > >>
> > >
> >
>

Re: Summarizer from saveservice.properties not used.

Posted by Deepak Shetty <sh...@gmail.com>.
or you could just write code in java and invoke it from a beanshell
listener (though i second what was told to you previously - its easier to
load the the .jtl/.csv result of a test run into a DB)


On Thu, Jul 24, 2014 at 7:37 AM, Yogesh Rao <yo...@gmail.com> wrote:

> HI Sebb,
>
> I saw the listeners which you mentioned. please correct my understanding
> here ... I will have to write a class which implements TestStateListener
> and SampleListener and NoThreadClone. However what i am not sure is how do
> i plug it with JMeter... My understanding of the code leads to an intrusive
> way where i overwrite few sections of the codebase and build JMeter code
> and then run.. is my understanding right here ? or is there a seamless way
> i can plug-in the new listener can you give me some pointers ?
>
> Thanks in advance ...
>
> Regards,
> -Yogesh
>
>
> On Thu, Jul 24, 2014 at 5:49 PM, Yogesh Rao <yo...@gmail.com> wrote:
>
> > Hello Shmuel,
> >
> > The approach sounds intresting will investigate further...
> >
> > I am also looking at custom listener and post processors to see if can
> > help us
> >
> > Regards,
> > -Yogesh
> >
> > On Thursday, July 24, 2014, Shmuel Krakower <sh...@gmail.com> wrote:
> >
> >> One other approach which someone previously mentioned in this list is to
> >> fetch via external tool the jtl file as it is being written on file
> system
> >> to your database...
> >>
> >> www.beatsoo.org - free application performance monitoring from world
> wide
> >> locations.
> >> On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yo...@gmail.com> wrote:
> >>
> >> > Sebb,
> >> >
> >> > would such a feature i.e, able to customise Summariser be desired?
> >> >
> >> > Shmuel,
> >> >
> >> > You approach is certainly something which we can think on.. but we are
> >> > planning to retrieve realtime results on the tests from JMeter hence
> >> were
> >> > thinking on extending Summariser. Is there anyother plugin / approach
> >> which
> >> > you are aware of which can help us achieve the same?
> >> >
> >> > Thank you for the prompt reply guys!
> >> >
> >> > Regards,
> >> > -Yogesh
> >> >
> >> > Regards,
> >> > -Yogesh
> >> >
> >> >
> >> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com>
> >> > wrote:
> >> >
> >> > > Hi,
> >> > > I've created in the past a saveservice implementation that puts
> >> results
> >> > in
> >> > > MongoDB with the NONE write concern (almost async), but it was ugly
> >> code
> >> > > and later on I figured that I don't actually want to save ALL
> samplers
> >> > back
> >> > > into DB.
> >> > >
> >> > > What I end up doing, is running the JMeter Plugins CMD that
> summarize
> >> > > results, after a load test is finished.
> >> > > So you get a nice CSV data table, like
> >> > >
> >> > >
> >> >
> >>
> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
> >> > > Then I just parse it and push this into DB (mongodb).
> >> > >
> >> > > Shmuel Krakower.
> >> > > www.Beatsoo.org - re-use your jmeter scripts for application
> >> performance
> >> > > monitoring from worldwide locations for free.
> >> > >
> >> > >
> >> > > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com>
> >> wrote:
> >> > >
> >> > > > Hi,
> >> > > >
> >> > > > I had a quick question on extension of Summariser class as we
> >> wanted to
> >> > > > push the information into database (we plan to have the db insert
> >> > > async). I
> >> > > > did notice that there is the saveservice.properties which is
> >> available
> >> > in
> >> > > > /bin directory which is loaded by JMeter, however the summarise
> >> entry
> >> > > > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
> >> > > > properties file
> >> > > >  is never used to create the instance of Summariser within the
> code
> >> for
> >> > > the
> >> > > > non gui version
> >> > > >
> >> > > > my question is :-
> >> > > >
> >> > > > 1. can the saveservice.properties be customized so that jmeter
> uses
> >> the
> >> > > > classes mentioned in properties files instead of the default ones
> ?
> >> > > > 2. If the saveservice.properties is not for customizing can you
> >> please
> >> > > let
> >> > > > me know what use does it have.. i tried to search on the
> importance
> >> of
> >> > > this
> >> > > > but couldnt figure out much
> >> > > >
> >> > > > Also wanted to know whether the community be intrested in giving
> the
> >> > user
> >> > > > customization of summariser  feature.. I would be happy to raise
> an
> >> > issue
> >> > > > and also help contribute the same.
> >> > > >
> >> > > > We are using the JMeter 2.11 on windows with JDK 7
> >> > > >
> >> > > > Thank you!
> >> > > >
> >> > > > Regards,
> >> > > > -Yogesh
> >> > > >
> >> > >
> >> >
> >>
> >
>

Re: Summarizer from saveservice.properties not used.

Posted by Yogesh Rao <yo...@gmail.com>.
HI Sebb,

I saw the listeners which you mentioned. please correct my understanding
here ... I will have to write a class which implements TestStateListener
and SampleListener and NoThreadClone. However what i am not sure is how do
i plug it with JMeter... My understanding of the code leads to an intrusive
way where i overwrite few sections of the codebase and build JMeter code
and then run.. is my understanding right here ? or is there a seamless way
i can plug-in the new listener can you give me some pointers ?

Thanks in advance ...

Regards,
-Yogesh


On Thu, Jul 24, 2014 at 5:49 PM, Yogesh Rao <yo...@gmail.com> wrote:

> Hello Shmuel,
>
> The approach sounds intresting will investigate further...
>
> I am also looking at custom listener and post processors to see if can
> help us
>
> Regards,
> -Yogesh
>
> On Thursday, July 24, 2014, Shmuel Krakower <sh...@gmail.com> wrote:
>
>> One other approach which someone previously mentioned in this list is to
>> fetch via external tool the jtl file as it is being written on file system
>> to your database...
>>
>> www.beatsoo.org - free application performance monitoring from world wide
>> locations.
>> On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yo...@gmail.com> wrote:
>>
>> > Sebb,
>> >
>> > would such a feature i.e, able to customise Summariser be desired?
>> >
>> > Shmuel,
>> >
>> > You approach is certainly something which we can think on.. but we are
>> > planning to retrieve realtime results on the tests from JMeter hence
>> were
>> > thinking on extending Summariser. Is there anyother plugin / approach
>> which
>> > you are aware of which can help us achieve the same?
>> >
>> > Thank you for the prompt reply guys!
>> >
>> > Regards,
>> > -Yogesh
>> >
>> > Regards,
>> > -Yogesh
>> >
>> >
>> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com>
>> > wrote:
>> >
>> > > Hi,
>> > > I've created in the past a saveservice implementation that puts
>> results
>> > in
>> > > MongoDB with the NONE write concern (almost async), but it was ugly
>> code
>> > > and later on I figured that I don't actually want to save ALL samplers
>> > back
>> > > into DB.
>> > >
>> > > What I end up doing, is running the JMeter Plugins CMD that summarize
>> > > results, after a load test is finished.
>> > > So you get a nice CSV data table, like
>> > >
>> > >
>> >
>> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
>> > > Then I just parse it and push this into DB (mongodb).
>> > >
>> > > Shmuel Krakower.
>> > > www.Beatsoo.org - re-use your jmeter scripts for application
>> performance
>> > > monitoring from worldwide locations for free.
>> > >
>> > >
>> > > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com>
>> wrote:
>> > >
>> > > > Hi,
>> > > >
>> > > > I had a quick question on extension of Summariser class as we
>> wanted to
>> > > > push the information into database (we plan to have the db insert
>> > > async). I
>> > > > did notice that there is the saveservice.properties which is
>> available
>> > in
>> > > > /bin directory which is loaded by JMeter, however the summarise
>> entry
>> > > > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
>> > > > properties file
>> > > >  is never used to create the instance of Summariser within the code
>> for
>> > > the
>> > > > non gui version
>> > > >
>> > > > my question is :-
>> > > >
>> > > > 1. can the saveservice.properties be customized so that jmeter uses
>> the
>> > > > classes mentioned in properties files instead of the default ones ?
>> > > > 2. If the saveservice.properties is not for customizing can you
>> please
>> > > let
>> > > > me know what use does it have.. i tried to search on the importance
>> of
>> > > this
>> > > > but couldnt figure out much
>> > > >
>> > > > Also wanted to know whether the community be intrested in giving the
>> > user
>> > > > customization of summariser  feature.. I would be happy to raise an
>> > issue
>> > > > and also help contribute the same.
>> > > >
>> > > > We are using the JMeter 2.11 on windows with JDK 7
>> > > >
>> > > > Thank you!
>> > > >
>> > > > Regards,
>> > > > -Yogesh
>> > > >
>> > >
>> >
>>
>

Re: Summarizer from saveservice.properties not used.

Posted by Yogesh Rao <yo...@gmail.com>.
Hello Shmuel,

The approach sounds intresting will investigate further...

I am also looking at custom listener and post processors to see if can help
us

Regards,
-Yogesh
On Thursday, July 24, 2014, Shmuel Krakower <sh...@gmail.com> wrote:

> One other approach which someone previously mentioned in this list is to
> fetch via external tool the jtl file as it is being written on file system
> to your database...
>
> www.beatsoo.org - free application performance monitoring from world wide
> locations.
> On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yogu13@gmail.com <javascript:;>>
> wrote:
>
> > Sebb,
> >
> > would such a feature i.e, able to customise Summariser be desired?
> >
> > Shmuel,
> >
> > You approach is certainly something which we can think on.. but we are
> > planning to retrieve realtime results on the tests from JMeter hence were
> > thinking on extending Summariser. Is there anyother plugin / approach
> which
> > you are aware of which can help us achieve the same?
> >
> > Thank you for the prompt reply guys!
> >
> > Regards,
> > -Yogesh
> >
> > Regards,
> > -Yogesh
> >
> >
> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <shmulikk@gmail.com
> <javascript:;>>
> > wrote:
> >
> > > Hi,
> > > I've created in the past a saveservice implementation that puts results
> > in
> > > MongoDB with the NONE write concern (almost async), but it was ugly
> code
> > > and later on I figured that I don't actually want to save ALL samplers
> > back
> > > into DB.
> > >
> > > What I end up doing, is running the JMeter Plugins CMD that summarize
> > > results, after a load test is finished.
> > > So you get a nice CSV data table, like
> > >
> > >
> >
> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
> > > Then I just parse it and push this into DB (mongodb).
> > >
> > > Shmuel Krakower.
> > > www.Beatsoo.org - re-use your jmeter scripts for application
> performance
> > > monitoring from worldwide locations for free.
> > >
> > >
> > > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yogu13@gmail.com
> <javascript:;>> wrote:
> > >
> > > > Hi,
> > > >
> > > > I had a quick question on extension of Summariser class as we wanted
> to
> > > > push the information into database (we plan to have the db insert
> > > async). I
> > > > did notice that there is the saveservice.properties which is
> available
> > in
> > > > /bin directory which is loaded by JMeter, however the summarise entry
> > > > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
> > > > properties file
> > > >  is never used to create the instance of Summariser within the code
> for
> > > the
> > > > non gui version
> > > >
> > > > my question is :-
> > > >
> > > > 1. can the saveservice.properties be customized so that jmeter uses
> the
> > > > classes mentioned in properties files instead of the default ones ?
> > > > 2. If the saveservice.properties is not for customizing can you
> please
> > > let
> > > > me know what use does it have.. i tried to search on the importance
> of
> > > this
> > > > but couldnt figure out much
> > > >
> > > > Also wanted to know whether the community be intrested in giving the
> > user
> > > > customization of summariser  feature.. I would be happy to raise an
> > issue
> > > > and also help contribute the same.
> > > >
> > > > We are using the JMeter 2.11 on windows with JDK 7
> > > >
> > > > Thank you!
> > > >
> > > > Regards,
> > > > -Yogesh
> > > >
> > >
> >
>

Re: Summarizer from saveservice.properties not used.

Posted by Shmuel Krakower <sh...@gmail.com>.
One other approach which someone previously mentioned in this list is to
fetch via external tool the jtl file as it is being written on file system
to your database...

www.beatsoo.org - free application performance monitoring from world wide
locations.
On Jul 24, 2014 12:52 PM, "Yogesh Rao" <yo...@gmail.com> wrote:

> Sebb,
>
> would such a feature i.e, able to customise Summariser be desired?
>
> Shmuel,
>
> You approach is certainly something which we can think on.. but we are
> planning to retrieve realtime results on the tests from JMeter hence were
> thinking on extending Summariser. Is there anyother plugin / approach which
> you are aware of which can help us achieve the same?
>
> Thank you for the prompt reply guys!
>
> Regards,
> -Yogesh
>
> Regards,
> -Yogesh
>
>
> On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com>
> wrote:
>
> > Hi,
> > I've created in the past a saveservice implementation that puts results
> in
> > MongoDB with the NONE write concern (almost async), but it was ugly code
> > and later on I figured that I don't actually want to save ALL samplers
> back
> > into DB.
> >
> > What I end up doing, is running the JMeter Plugins CMD that summarize
> > results, after a load test is finished.
> > So you get a nice CSV data table, like
> >
> >
> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
> > Then I just parse it and push this into DB (mongodb).
> >
> > Shmuel Krakower.
> > www.Beatsoo.org - re-use your jmeter scripts for application performance
> > monitoring from worldwide locations for free.
> >
> >
> > On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com> wrote:
> >
> > > Hi,
> > >
> > > I had a quick question on extension of Summariser class as we wanted to
> > > push the information into database (we plan to have the db insert
> > async). I
> > > did notice that there is the saveservice.properties which is available
> in
> > > /bin directory which is loaded by JMeter, however the summarise entry
> > > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
> > > properties file
> > >  is never used to create the instance of Summariser within the code for
> > the
> > > non gui version
> > >
> > > my question is :-
> > >
> > > 1. can the saveservice.properties be customized so that jmeter uses the
> > > classes mentioned in properties files instead of the default ones ?
> > > 2. If the saveservice.properties is not for customizing can you please
> > let
> > > me know what use does it have.. i tried to search on the importance of
> > this
> > > but couldnt figure out much
> > >
> > > Also wanted to know whether the community be intrested in giving the
> user
> > > customization of summariser  feature.. I would be happy to raise an
> issue
> > > and also help contribute the same.
> > >
> > > We are using the JMeter 2.11 on windows with JDK 7
> > >
> > > Thank you!
> > >
> > > Regards,
> > > -Yogesh
> > >
> >
>

Re: Summarizer from saveservice.properties not used.

Posted by sebb <se...@gmail.com>.
On 24 July 2014 11:20, Yogesh Rao <yo...@gmail.com> wrote:
> Hi Sebb,
>
> Apologies if i may be asking basic questions here but are listeners / post
> processor invoked in a non gui mode ?

Try it and see.

> Regards,
> -Yogesh
>
>
> On Thu, Jul 24, 2014 at 3:44 PM, sebb <se...@gmail.com> wrote:
>
>> On 24 July 2014 10:51, Yogesh Rao <yo...@gmail.com> wrote:
>> > Sebb,
>> >
>> > would such a feature i.e, able to customise Summariser be desired?
>>
>> Depends on what you are proposing.
>> Please start a new thread for that.
>>
>> > Shmuel,
>> >
>> > You approach is certainly something which we can think on.. but we are
>> > planning to retrieve realtime results on the tests from JMeter hence were
>> > thinking on extending Summariser. Is there anyother plugin / approach
>> which
>> > you are aware of which can help us achieve the same?
>>
>> You can create your own test element (e.g. Listener or perhaps
>> Post-Processor) which can do anything you want with the samples.
>>
>> > Thank you for the prompt reply guys!
>> >
>> > Regards,
>> > -Yogesh
>> >
>> > Regards,
>> > -Yogesh
>> >
>> >
>> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com>
>> wrote:
>> >
>> >> Hi,
>> >> I've created in the past a saveservice implementation that puts results
>> in
>> >> MongoDB with the NONE write concern (almost async), but it was ugly code
>> >> and later on I figured that I don't actually want to save ALL samplers
>> back
>> >> into DB.
>> >>
>> >> What I end up doing, is running the JMeter Plugins CMD that summarize
>> >> results, after a load test is finished.
>> >> So you get a nice CSV data table, like
>> >>
>> >>
>> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
>> >> Then I just parse it and push this into DB (mongodb).
>> >>
>> >> Shmuel Krakower.
>> >> www.Beatsoo.org - re-use your jmeter scripts for application
>> performance
>> >> monitoring from worldwide locations for free.
>> >>
>> >>
>> >> On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com> wrote:
>> >>
>> >> > Hi,
>> >> >
>> >> > I had a quick question on extension of Summariser class as we wanted
>> to
>> >> > push the information into database (we plan to have the db insert
>> >> async). I
>> >> > did notice that there is the saveservice.properties which is
>> available in
>> >> > /bin directory which is loaded by JMeter, however the summarise entry
>> >> > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
>> >> > properties file
>> >> >  is never used to create the instance of Summariser within the code
>> for
>> >> the
>> >> > non gui version
>> >> >
>> >> > my question is :-
>> >> >
>> >> > 1. can the saveservice.properties be customized so that jmeter uses
>> the
>> >> > classes mentioned in properties files instead of the default ones ?
>> >> > 2. If the saveservice.properties is not for customizing can you please
>> >> let
>> >> > me know what use does it have.. i tried to search on the importance of
>> >> this
>> >> > but couldnt figure out much
>> >> >
>> >> > Also wanted to know whether the community be intrested in giving the
>> user
>> >> > customization of summariser  feature.. I would be happy to raise an
>> issue
>> >> > and also help contribute the same.
>> >> >
>> >> > We are using the JMeter 2.11 on windows with JDK 7
>> >> >
>> >> > Thank you!
>> >> >
>> >> > Regards,
>> >> > -Yogesh
>> >> >
>> >>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
>> For additional commands, e-mail: user-help@jmeter.apache.org
>>
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: Summarizer from saveservice.properties not used.

Posted by Yogesh Rao <yo...@gmail.com>.
Hi Sebb,

Apologies if i may be asking basic questions here but are listeners / post
processor invoked in a non gui mode ?

Regards,
-Yogesh


On Thu, Jul 24, 2014 at 3:44 PM, sebb <se...@gmail.com> wrote:

> On 24 July 2014 10:51, Yogesh Rao <yo...@gmail.com> wrote:
> > Sebb,
> >
> > would such a feature i.e, able to customise Summariser be desired?
>
> Depends on what you are proposing.
> Please start a new thread for that.
>
> > Shmuel,
> >
> > You approach is certainly something which we can think on.. but we are
> > planning to retrieve realtime results on the tests from JMeter hence were
> > thinking on extending Summariser. Is there anyother plugin / approach
> which
> > you are aware of which can help us achieve the same?
>
> You can create your own test element (e.g. Listener or perhaps
> Post-Processor) which can do anything you want with the samples.
>
> > Thank you for the prompt reply guys!
> >
> > Regards,
> > -Yogesh
> >
> > Regards,
> > -Yogesh
> >
> >
> > On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com>
> wrote:
> >
> >> Hi,
> >> I've created in the past a saveservice implementation that puts results
> in
> >> MongoDB with the NONE write concern (almost async), but it was ugly code
> >> and later on I figured that I don't actually want to save ALL samplers
> back
> >> into DB.
> >>
> >> What I end up doing, is running the JMeter Plugins CMD that summarize
> >> results, after a load test is finished.
> >> So you get a nice CSV data table, like
> >>
> >>
> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
> >> Then I just parse it and push this into DB (mongodb).
> >>
> >> Shmuel Krakower.
> >> www.Beatsoo.org - re-use your jmeter scripts for application
> performance
> >> monitoring from worldwide locations for free.
> >>
> >>
> >> On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com> wrote:
> >>
> >> > Hi,
> >> >
> >> > I had a quick question on extension of Summariser class as we wanted
> to
> >> > push the information into database (we plan to have the db insert
> >> async). I
> >> > did notice that there is the saveservice.properties which is
> available in
> >> > /bin directory which is loaded by JMeter, however the summarise entry
> >> > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
> >> > properties file
> >> >  is never used to create the instance of Summariser within the code
> for
> >> the
> >> > non gui version
> >> >
> >> > my question is :-
> >> >
> >> > 1. can the saveservice.properties be customized so that jmeter uses
> the
> >> > classes mentioned in properties files instead of the default ones ?
> >> > 2. If the saveservice.properties is not for customizing can you please
> >> let
> >> > me know what use does it have.. i tried to search on the importance of
> >> this
> >> > but couldnt figure out much
> >> >
> >> > Also wanted to know whether the community be intrested in giving the
> user
> >> > customization of summariser  feature.. I would be happy to raise an
> issue
> >> > and also help contribute the same.
> >> >
> >> > We are using the JMeter 2.11 on windows with JDK 7
> >> >
> >> > Thank you!
> >> >
> >> > Regards,
> >> > -Yogesh
> >> >
> >>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> For additional commands, e-mail: user-help@jmeter.apache.org
>
>

Re: Summarizer from saveservice.properties not used.

Posted by sebb <se...@gmail.com>.
On 24 July 2014 10:51, Yogesh Rao <yo...@gmail.com> wrote:
> Sebb,
>
> would such a feature i.e, able to customise Summariser be desired?

Depends on what you are proposing.
Please start a new thread for that.

> Shmuel,
>
> You approach is certainly something which we can think on.. but we are
> planning to retrieve realtime results on the tests from JMeter hence were
> thinking on extending Summariser. Is there anyother plugin / approach which
> you are aware of which can help us achieve the same?

You can create your own test element (e.g. Listener or perhaps
Post-Processor) which can do anything you want with the samples.

> Thank you for the prompt reply guys!
>
> Regards,
> -Yogesh
>
> Regards,
> -Yogesh
>
>
> On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com> wrote:
>
>> Hi,
>> I've created in the past a saveservice implementation that puts results in
>> MongoDB with the NONE write concern (almost async), but it was ugly code
>> and later on I figured that I don't actually want to save ALL samplers back
>> into DB.
>>
>> What I end up doing, is running the JMeter Plugins CMD that summarize
>> results, after a load test is finished.
>> So you get a nice CSV data table, like
>>
>> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
>> Then I just parse it and push this into DB (mongodb).
>>
>> Shmuel Krakower.
>> www.Beatsoo.org - re-use your jmeter scripts for application performance
>> monitoring from worldwide locations for free.
>>
>>
>> On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com> wrote:
>>
>> > Hi,
>> >
>> > I had a quick question on extension of Summariser class as we wanted to
>> > push the information into database (we plan to have the db insert
>> async). I
>> > did notice that there is the saveservice.properties which is available in
>> > /bin directory which is loaded by JMeter, however the summarise entry
>> > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
>> > properties file
>> >  is never used to create the instance of Summariser within the code for
>> the
>> > non gui version
>> >
>> > my question is :-
>> >
>> > 1. can the saveservice.properties be customized so that jmeter uses the
>> > classes mentioned in properties files instead of the default ones ?
>> > 2. If the saveservice.properties is not for customizing can you please
>> let
>> > me know what use does it have.. i tried to search on the importance of
>> this
>> > but couldnt figure out much
>> >
>> > Also wanted to know whether the community be intrested in giving the user
>> > customization of summariser  feature.. I would be happy to raise an issue
>> > and also help contribute the same.
>> >
>> > We are using the JMeter 2.11 on windows with JDK 7
>> >
>> > Thank you!
>> >
>> > Regards,
>> > -Yogesh
>> >
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: Summarizer from saveservice.properties not used.

Posted by Yogesh Rao <yo...@gmail.com>.
Sebb,

would such a feature i.e, able to customise Summariser be desired?

Shmuel,

You approach is certainly something which we can think on.. but we are
planning to retrieve realtime results on the tests from JMeter hence were
thinking on extending Summariser. Is there anyother plugin / approach which
you are aware of which can help us achieve the same?

Thank you for the prompt reply guys!

Regards,
-Yogesh

Regards,
-Yogesh


On Thu, Jul 24, 2014 at 3:11 PM, Shmuel Krakower <sh...@gmail.com> wrote:

> Hi,
> I've created in the past a saveservice implementation that puts results in
> MongoDB with the NONE write concern (almost async), but it was ugly code
> and later on I figured that I don't actually want to save ALL samplers back
> into DB.
>
> What I end up doing, is running the JMeter Plugins CMD that summarize
> results, after a load test is finished.
> So you get a nice CSV data table, like
>
> http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
> Then I just parse it and push this into DB (mongodb).
>
> Shmuel Krakower.
> www.Beatsoo.org - re-use your jmeter scripts for application performance
> monitoring from worldwide locations for free.
>
>
> On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com> wrote:
>
> > Hi,
> >
> > I had a quick question on extension of Summariser class as we wanted to
> > push the information into database (we plan to have the db insert
> async). I
> > did notice that there is the saveservice.properties which is available in
> > /bin directory which is loaded by JMeter, however the summarise entry
> > defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
> > properties file
> >  is never used to create the instance of Summariser within the code for
> the
> > non gui version
> >
> > my question is :-
> >
> > 1. can the saveservice.properties be customized so that jmeter uses the
> > classes mentioned in properties files instead of the default ones ?
> > 2. If the saveservice.properties is not for customizing can you please
> let
> > me know what use does it have.. i tried to search on the importance of
> this
> > but couldnt figure out much
> >
> > Also wanted to know whether the community be intrested in giving the user
> > customization of summariser  feature.. I would be happy to raise an issue
> > and also help contribute the same.
> >
> > We are using the JMeter 2.11 on windows with JDK 7
> >
> > Thank you!
> >
> > Regards,
> > -Yogesh
> >
>

Re: Summarizer from saveservice.properties not used.

Posted by Shmuel Krakower <sh...@gmail.com>.
Hi,
I've created in the past a saveservice implementation that puts results in
MongoDB with the NONE write concern (almost async), but it was ugly code
and later on I figured that I don't actually want to save ALL samplers back
into DB.

What I end up doing, is running the JMeter Plugins CMD that summarize
results, after a load test is finished.
So you get a nice CSV data table, like
http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
Then I just parse it and push this into DB (mongodb).

Shmuel Krakower.
www.Beatsoo.org - re-use your jmeter scripts for application performance
monitoring from worldwide locations for free.


On Thu, Jul 24, 2014 at 12:34 PM, Yogesh Rao <yo...@gmail.com> wrote:

> Hi,
>
> I had a quick question on extension of Summariser class as we wanted to
> push the information into database (we plan to have the db insert async). I
> did notice that there is the saveservice.properties which is available in
> /bin directory which is loaded by JMeter, however the summarise entry
> defined "Summariser=org.apache.jmeter.reporters.Summariser" in the
> properties file
>  is never used to create the instance of Summariser within the code for the
> non gui version
>
> my question is :-
>
> 1. can the saveservice.properties be customized so that jmeter uses the
> classes mentioned in properties files instead of the default ones ?
> 2. If the saveservice.properties is not for customizing can you please let
> me know what use does it have.. i tried to search on the importance of this
> but couldnt figure out much
>
> Also wanted to know whether the community be intrested in giving the user
> customization of summariser  feature.. I would be happy to raise an issue
> and also help contribute the same.
>
> We are using the JMeter 2.11 on windows with JDK 7
>
> Thank you!
>
> Regards,
> -Yogesh
>