Re: JMeter not showing runtime execution summary

2018-01-25 Thread Pravesh Shrivastava
Thanks Philippe for sharing the knowledge.

On Jan 25, 2018 01:42, "Philippe Mouawad" <p.moua...@ubik-ingenierie.com>
wrote:

> Hello Pravesh, Alexander, Scott,
> Whether you check or not Generate Parent Sample, a sample result for the TC
> is generated.
> But if your check it, when CSV generatiion (default) is used, the children
> are not written to CSV.
> As a consequence (as suggested by Antonio), we lose all the information
> contained in it which allows computing:
>
>- Hits per second
>- Response code per second
>- Top Errors : we lose the precise causes
>- Top Errors by Sampler : we lose the precise causes
>
> So to get what you need:
>
>- Use on your TC "Apply Naming Policy" (right click popup menu )
>- Use Help > Export Transaction for Report and only keep the TCs you
>want for the report
>
> And you'll get best of both.
>
> I hope this is clear, if somebody is willing to amend the docs:
>
>- http://jmeter.apache.org/usermanual/generating-dashboard.html
>
> By providing a PR to:
>
>-
>https://github.com/apache/jmeter/blob/trunk/xdocs/
> usermanual/generating-dashboard.xml
>- https://github.com/apache/jmeter/blob/trunk/CONTRIBUTING.md
>- http://jmeter.apache.org/building.html => Contributing to JMeter
>
> If you have ideas to improve, they are welcome.
>
> By the way, 4.0 is coming soon (next week we hope), if you'd like ALL to
> test it we'll be very happy:
>
>- https://github.com/apache/jmeter/blob/trunk/xdocs/changes.xml
>- http://jmeter.apache.org/nightly.html
>
> Regards
>
> Philippe M.
>
> @philmdot
>
> On Wed, Jan 24, 2018 at 4:19 PM, Alexander Podelko <apode...@yahoo.com>
> wrote:
>
> > Philippe,
> >
> > Why Generate Parent Sampler is not advised? If we have several http
> > requests per user action, it doesn't make much sense to measure each
> > request separately (except we want to investigate it further) - we want
> to
> > measure how long the user action takes (all evoked http requests
> together). Generate
> > Parent Sampler sounds as the way to implement that.
> >
> > It doesn't elaborate there why it is not advised and what should be used
> > instead.
> >
> > Thanks,
> > Alex
> >
> >
> > On Wednesday, January 24, 2018, 2:36:04 AM EST, Philippe Mouawad <
> > philippe.moua...@gmail.com> wrote:
> >
> >
> > Hello,
> > Summary only displays by default HTTP requests, so if you have checked
> > Generate Parent sampler in Transaction Controller and only have TC
> > generated, that would cause what you got.
> > So this would do the trick:
> > summariser.ignore_transaction_controller_sample_result=false
> >
> > Still, setting Generate Parent Sampler is not advised as per:
> >
> >   -
> >
> >   http://jmeter.apache.org/usermanual/generating-
> > dashboard.html#configuration_requirements
> >
> > Regards
> >
> > On Tue, Jan 23, 2018 at 5:31 PM, Alexander Podelko <
> > apode...@yahoo.com.invalid> wrote:
> >
> > >  I had a similar issue - only one empty line in the end of
> > > tests:Summariser: summary =  0 in 00:00:00 = **/s Avg:0
> Min:
> > > 9223372036854775807 Max: -9223372036854775808 Err:0 (0.00%)
> > >
> > > In my case the problem was in:# Ignore SampleResults generated by
> > > TransactionControllers
> > > # defaults to true
> > > So changing it tosummariser.ignore_transaction_controller_sample_
> > result=falsein
> > > jmeter.properties fixed the issue as I have everything in
> > > TransactionControllers.
> > >
> > >On Tuesday, January 23, 2018, 10:20:55 AM EST, Ivan Rancati <
> > > ivan.ranc...@gmail.com> wrote:
> > >
> > >  Probably you should try with JMeter 3.3
> > >
> > > On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
> > > pravesh.shrivast...@gmail.com> wrote:
> > >
> > > > Yes, it is working in UI. And also giving me proper results in non
> GUI.
> > > The
> > > > only thing is, I can't see the runtime summary
> > > >
> > > >
> > > > > --
> > > > > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > > > > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > > > > *To:* JMeter Users List
> > > > > *Subject:* JMeter not showing runtime execution summary
> > > > >
> > > > > Hi Everyone,
> > > > >
> > > > > I am using JMeter 3.1 for Performance Testing for one of my
> projects.
> > > > When
> > > > > I start execution in non-GUI mode using command
> > > > >
> > > > > jmeter -n -t -l -e -o
> > > > >
> > > > > It is not showing the runtime execution summary. It is directly
> > showing
> > > > end
> > > > > of execution message after finishing the execution.
> > > > >
> > > > > Is there any property to be enable to see the runtime execution
> > > summary?
> > > > > Please suggest.
> > > > >
> > > > >
> > > > > --
> > > > > Thanks,
> > > > > Pravesh Shrivastava
> >
> > > > >
> > > > >
> > > >
> > >
> > >
> >
> >
> >
> > --
> > Cordialement.
> > Philippe Mouawad.
> >
> >
>


Re: JMeter not showing runtime execution summary

2018-01-24 Thread Philippe Mouawad
Hello Pravesh, Alexander, Scott,
Whether you check or not Generate Parent Sample, a sample result for the TC
is generated.
But if your check it, when CSV generatiion (default) is used, the children
are not written to CSV.
As a consequence (as suggested by Antonio), we lose all the information
contained in it which allows computing:

   - Hits per second
   - Response code per second
   - Top Errors : we lose the precise causes
   - Top Errors by Sampler : we lose the precise causes

So to get what you need:

   - Use on your TC "Apply Naming Policy" (right click popup menu )
   - Use Help > Export Transaction for Report and only keep the TCs you
   want for the report

And you'll get best of both.

I hope this is clear, if somebody is willing to amend the docs:

   - http://jmeter.apache.org/usermanual/generating-dashboard.html

By providing a PR to:

   -
   
https://github.com/apache/jmeter/blob/trunk/xdocs/usermanual/generating-dashboard.xml
   - https://github.com/apache/jmeter/blob/trunk/CONTRIBUTING.md
   - http://jmeter.apache.org/building.html => Contributing to JMeter

If you have ideas to improve, they are welcome.

By the way, 4.0 is coming soon (next week we hope), if you'd like ALL to
test it we'll be very happy:

   - https://github.com/apache/jmeter/blob/trunk/xdocs/changes.xml
   - http://jmeter.apache.org/nightly.html

Regards

Philippe M.

@philmdot

On Wed, Jan 24, 2018 at 4:19 PM, Alexander Podelko <apode...@yahoo.com>
wrote:

> Philippe,
>
> Why Generate Parent Sampler is not advised? If we have several http
> requests per user action, it doesn't make much sense to measure each
> request separately (except we want to investigate it further) - we want to
> measure how long the user action takes (all evoked http requests together). 
> Generate
> Parent Sampler sounds as the way to implement that.
>
> It doesn't elaborate there why it is not advised and what should be used
> instead.
>
> Thanks,
> Alex
>
>
> On Wednesday, January 24, 2018, 2:36:04 AM EST, Philippe Mouawad <
> philippe.moua...@gmail.com> wrote:
>
>
> Hello,
> Summary only displays by default HTTP requests, so if you have checked
> Generate Parent sampler in Transaction Controller and only have TC
> generated, that would cause what you got.
> So this would do the trick:
> summariser.ignore_transaction_controller_sample_result=false
>
> Still, setting Generate Parent Sampler is not advised as per:
>
>   -
>
>   http://jmeter.apache.org/usermanual/generating-
> dashboard.html#configuration_requirements
>
> Regards
>
> On Tue, Jan 23, 2018 at 5:31 PM, Alexander Podelko <
> apode...@yahoo.com.invalid> wrote:
>
> >  I had a similar issue - only one empty line in the end of
> > tests:Summariser: summary =  0 in 00:00:00 = **/s Avg:0 Min:
> > 9223372036854775807 Max: -9223372036854775808 Err:0 (0.00%)
> >
> > In my case the problem was in:# Ignore SampleResults generated by
> > TransactionControllers
> > # defaults to true
> > So changing it tosummariser.ignore_transaction_controller_sample_
> result=falsein
> > jmeter.properties fixed the issue as I have everything in
> > TransactionControllers.
> >
> >On Tuesday, January 23, 2018, 10:20:55 AM EST, Ivan Rancati <
> > ivan.ranc...@gmail.com> wrote:
> >
> >  Probably you should try with JMeter 3.3
> >
> > On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
> > pravesh.shrivast...@gmail.com> wrote:
> >
> > > Yes, it is working in UI. And also giving me proper results in non GUI.
> > The
> > > only thing is, I can't see the runtime summary
> > >
> > >
> > > > --
> > > > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > > > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > > > *To:* JMeter Users List
> > > > *Subject:* JMeter not showing runtime execution summary
> > > >
> > > > Hi Everyone,
> > > >
> > > > I am using JMeter 3.1 for Performance Testing for one of my projects.
> > > When
> > > > I start execution in non-GUI mode using command
> > > >
> > > > jmeter -n -t -l -e -o
> > > >
> > > > It is not showing the runtime execution summary. It is directly
> showing
> > > end
> > > > of execution message after finishing the execution.
> > > >
> > > > Is there any property to be enable to see the runtime execution
> > summary?
> > > > Please suggest.
> > > >
> > > >
> > > > --
> > > > Thanks,
> > > > Pravesh Shrivastava
>
> > > >
> > > >
> > >
> >
> >
>
>
>
> --
> Cordialement.
> Philippe Mouawad.
>
>


Re: JMeter not showing runtime execution summary

2018-01-24 Thread Pravesh Shrivastava
Hi,

I can tell you how it works for me. All the times I executed test from
non-GUI. I had 4 5 request as child's for Transaction Controller. I had
below configuration and generated dashboard report.

1. Generate Parent sample enabled:
It gave me only Parent Sample (Transaction Controller) response time for
me. But got the particular sample was having high response time but I could
not look into the actual request which was having high response time.

2. Generate Parent sample disabled
I got Parent Sample with the average response time of children of
Transaction Controller also got the child requests. So it was easy for me
to identity the actual request with high response time.

But, still we need Philippe's response on why Generate Parent Sample is not
recommended...

--
Thanks,
Pravesh Shrivastava


On Jan 24, 2018 22:49, "Scott Dean"  wrote:

Thank you, Alexander, for asking this question.  I am interested in the
explanation about this as well.

-- Scott Dean
   Office of Information Technology, Shared Services Department
   North Carolina State University
   Ralegh, NC, USA

On Wed, Jan 24, 2018 at 10:19 AM, Alexander Podelko <
apode...@yahoo.com.invalid> wrote:

>  Philippe,
> Why Generate Parent Sampler is not advised? If we have several http
> requests per user action, it doesn't make much sense to measure each
> request separately (except we want to investigate it further) - we want to
> measure how long the user action takes (all evoked http requests
> together). Generate Parent Sampler sounds as the way to implement that.
> It doesn't elaborate there why it is not advised and what should be used
> instead.
> Thanks,Alex
>
> On Wednesday, January 24, 2018, 2:36:04 AM EST, Philippe Mouawad <
> philippe.moua...@gmail.com> wrote:
>
>  Hello,
> Summary only displays by default HTTP requests, so if you have checked
> Generate Parent sampler in Transaction Controller and only have TC
> generated, that would cause what you got.
> So this would do the trick:
> summariser.ignore_transaction_controller_sample_result=false
>
> Still, setting Generate Parent Sampler is not advised as per:
>
>   -
>   http://jmeter.apache.org/usermanual/generating-
> dashboard.html#configuration_requirements
>
> Regards
>
>


Re: JMeter not showing runtime execution summary

2018-01-24 Thread Antonio Gomes Rodrigues
Hi,

I think it's for HTML report which will have more details if Generate
Parent Sampler is desactived



2018-01-24 18:18 GMT+01:00 Scott Dean :

> Thank you, Alexander, for asking this question.  I am interested in the
> explanation about this as well.
>
> -- Scott Dean
>Office of Information Technology, Shared Services Department
>North Carolina State University
>Ralegh, NC, USA
>
> On Wed, Jan 24, 2018 at 10:19 AM, Alexander Podelko <
> apode...@yahoo.com.invalid> wrote:
>
> >  Philippe,
> > Why Generate Parent Sampler is not advised? If we have several http
> > requests per user action, it doesn't make much sense to measure each
> > request separately (except we want to investigate it further) - we want
> to
> > measure how long the user action takes (all evoked http requests
> > together). Generate Parent Sampler sounds as the way to implement that.
> > It doesn't elaborate there why it is not advised and what should be used
> > instead.
> > Thanks,Alex
> >
> > On Wednesday, January 24, 2018, 2:36:04 AM EST, Philippe Mouawad <
> > philippe.moua...@gmail.com> wrote:
> >
> >  Hello,
> > Summary only displays by default HTTP requests, so if you have checked
> > Generate Parent sampler in Transaction Controller and only have TC
> > generated, that would cause what you got.
> > So this would do the trick:
> > summariser.ignore_transaction_controller_sample_result=false
> >
> > Still, setting Generate Parent Sampler is not advised as per:
> >
> >   -
> >   http://jmeter.apache.org/usermanual/generating-
> > dashboard.html#configuration_requirements
> >
> > Regards
> >
> >
>


Re: JMeter not showing runtime execution summary

2018-01-24 Thread Scott Dean
Thank you, Alexander, for asking this question.  I am interested in the
explanation about this as well.

-- Scott Dean
   Office of Information Technology, Shared Services Department
   North Carolina State University
   Ralegh, NC, USA

On Wed, Jan 24, 2018 at 10:19 AM, Alexander Podelko <
apode...@yahoo.com.invalid> wrote:

>  Philippe,
> Why Generate Parent Sampler is not advised? If we have several http
> requests per user action, it doesn't make much sense to measure each
> request separately (except we want to investigate it further) - we want to
> measure how long the user action takes (all evoked http requests
> together). Generate Parent Sampler sounds as the way to implement that.
> It doesn't elaborate there why it is not advised and what should be used
> instead.
> Thanks,Alex
>
> On Wednesday, January 24, 2018, 2:36:04 AM EST, Philippe Mouawad <
> philippe.moua...@gmail.com> wrote:
>
>  Hello,
> Summary only displays by default HTTP requests, so if you have checked
> Generate Parent sampler in Transaction Controller and only have TC
> generated, that would cause what you got.
> So this would do the trick:
> summariser.ignore_transaction_controller_sample_result=false
>
> Still, setting Generate Parent Sampler is not advised as per:
>
>   -
>   http://jmeter.apache.org/usermanual/generating-
> dashboard.html#configuration_requirements
>
> Regards
>
>


Re: JMeter not showing runtime execution summary

2018-01-24 Thread Alexander Podelko
 Philippe,
Why Generate Parent Sampler is not advised? If we have several http requests 
per user action, it doesn't make much sense to measure each request separately 
(except we want to investigate it further) - we want to measure how long the 
user action takes (all evoked http requests together). Generate Parent Sampler 
sounds as the way to implement that.
It doesn't elaborate there why it is not advised and what should be used 
instead.
Thanks,Alex

On Wednesday, January 24, 2018, 2:36:04 AM EST, Philippe Mouawad 
<philippe.moua...@gmail.com> wrote:  
 
 Hello,
Summary only displays by default HTTP requests, so if you have checked
Generate Parent sampler in Transaction Controller and only have TC
generated, that would cause what you got.
So this would do the trick:
summariser.ignore_transaction_controller_sample_result=false

Still, setting Generate Parent Sampler is not advised as per:

  -
  
http://jmeter.apache.org/usermanual/generating-dashboard.html#configuration_requirements

Regards

On Tue, Jan 23, 2018 at 5:31 PM, Alexander Podelko <
apode...@yahoo.com.invalid> wrote:

>  I had a similar issue - only one empty line in the end of
> tests:Summariser: summary =      0 in 00:00:00 = **/s Avg:    0 Min:
> 9223372036854775807 Max: -9223372036854775808 Err:    0 (0.00%)
>
> In my case the problem was in:# Ignore SampleResults generated by
> TransactionControllers
> # defaults to true
> So changing it 
> tosummariser.ignore_transaction_controller_sample_result=falsein
> jmeter.properties fixed the issue as I have everything in
> TransactionControllers.
>
>    On Tuesday, January 23, 2018, 10:20:55 AM EST, Ivan Rancati <
> ivan.ranc...@gmail.com> wrote:
>
>  Probably you should try with JMeter 3.3
>
> On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
> pravesh.shrivast...@gmail.com> wrote:
>
> > Yes, it is working in UI. And also giving me proper results in non GUI.
> The
> > only thing is, I can't see the runtime summary
> >
> >
> > > --
> > > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > > *To:* JMeter Users List
> > > *Subject:* JMeter not showing runtime execution summary
> > >
> > > Hi Everyone,
> > >
> > > I am using JMeter 3.1 for Performance Testing for one of my projects.
> > When
> > > I start execution in non-GUI mode using command
> > >
> > > jmeter -n -t -l -e -o
> > >
> > > It is not showing the runtime execution summary. It is directly showing
> > end
> > > of execution message after finishing the execution.
> > >
> > > Is there any property to be enable to see the runtime execution
> summary?
> > > Please suggest.
> > >
> > >
> > > --
> > > Thanks,
> > > Pravesh Shrivastava
> > >
> > >
> >
>
>



-- 
Cordialement.
Philippe Mouawad.
  

Re: JMeter not showing runtime execution summary

2018-01-24 Thread Pravesh Shrivastava
Thanks Everyone for suggestions.

I setup JMeter as Antonio, Alexander, and Philippe suggested and it worked.


Thanks,
Pravesh Shrivastava
+91-7755918521

On Jan 24, 2018 13:06, "Philippe Mouawad" <philippe.moua...@gmail.com>
wrote:

> Hello,
> Summary only displays by default HTTP requests, so if you have checked
> Generate Parent sampler in Transaction Controller and only have TC
> generated, that would cause what you got.
> So this would do the trick:
> summariser.ignore_transaction_controller_sample_result=false
>
> Still, setting Generate Parent Sampler is not advised as per:
>
>-
>http://jmeter.apache.org/usermanual/generating-
> dashboard.html#configuration_requirements
>
> Regards
>
> On Tue, Jan 23, 2018 at 5:31 PM, Alexander Podelko <
> apode...@yahoo.com.invalid> wrote:
>
> >  I had a similar issue - only one empty line in the end of
> > tests:Summariser: summary =  0 in 00:00:00 = **/s Avg: 0 Min:
> > 9223372036854775807 Max: -9223372036854775808 Err: 0 (0.00%)
> >
> > In my case the problem was in:# Ignore SampleResults generated by
> > TransactionControllers
> > # defaults to true
> > So changing it tosummariser.ignore_transaction_controller_sample_
> result=falsein
> > jmeter.properties fixed the issue as I have everything in
> > TransactionControllers.
> >
> > On Tuesday, January 23, 2018, 10:20:55 AM EST, Ivan Rancati <
> > ivan.ranc...@gmail.com> wrote:
> >
> >  Probably you should try with JMeter 3.3
> >
> > On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
> > pravesh.shrivast...@gmail.com> wrote:
> >
> > > Yes, it is working in UI. And also giving me proper results in non GUI.
> > The
> > > only thing is, I can't see the runtime summary
> > >
> > >
> > > > --
> > > > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > > > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > > > *To:* JMeter Users List
> > > > *Subject:* JMeter not showing runtime execution summary
> > > >
> > > > Hi Everyone,
> > > >
> > > > I am using JMeter 3.1 for Performance Testing for one of my projects.
> > > When
> > > > I start execution in non-GUI mode using command
> > > >
> > > > jmeter -n -t -l -e -o
> > > >
> > > > It is not showing the runtime execution summary. It is directly
> showing
> > > end
> > > > of execution message after finishing the execution.
> > > >
> > > > Is there any property to be enable to see the runtime execution
> > summary?
> > > > Please suggest.
> > > >
> > > >
> > > > --
> > > > Thanks,
> > > > Pravesh Shrivastava
> > > >
> > > >
> > >
> >
> >
>
>
>
> --
> Cordialement.
> Philippe Mouawad.
>


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Philippe Mouawad
Hello,
Summary only displays by default HTTP requests, so if you have checked
Generate Parent sampler in Transaction Controller and only have TC
generated, that would cause what you got.
So this would do the trick:
summariser.ignore_transaction_controller_sample_result=false

Still, setting Generate Parent Sampler is not advised as per:

   -
   
http://jmeter.apache.org/usermanual/generating-dashboard.html#configuration_requirements

Regards

On Tue, Jan 23, 2018 at 5:31 PM, Alexander Podelko <
apode...@yahoo.com.invalid> wrote:

>  I had a similar issue - only one empty line in the end of
> tests:Summariser: summary =  0 in 00:00:00 = **/s Avg: 0 Min:
> 9223372036854775807 Max: -9223372036854775808 Err: 0 (0.00%)
>
> In my case the problem was in:# Ignore SampleResults generated by
> TransactionControllers
> # defaults to true
> So changing it 
> tosummariser.ignore_transaction_controller_sample_result=falsein
> jmeter.properties fixed the issue as I have everything in
> TransactionControllers.
>
> On Tuesday, January 23, 2018, 10:20:55 AM EST, Ivan Rancati <
> ivan.ranc...@gmail.com> wrote:
>
>  Probably you should try with JMeter 3.3
>
> On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
> pravesh.shrivast...@gmail.com> wrote:
>
> > Yes, it is working in UI. And also giving me proper results in non GUI.
> The
> > only thing is, I can't see the runtime summary
> >
> >
> > > --
> > > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > > *To:* JMeter Users List
> > > *Subject:* JMeter not showing runtime execution summary
> > >
> > > Hi Everyone,
> > >
> > > I am using JMeter 3.1 for Performance Testing for one of my projects.
> > When
> > > I start execution in non-GUI mode using command
> > >
> > > jmeter -n -t -l -e -o
> > >
> > > It is not showing the runtime execution summary. It is directly showing
> > end
> > > of execution message after finishing the execution.
> > >
> > > Is there any property to be enable to see the runtime execution
> summary?
> > > Please suggest.
> > >
> > >
> > > --
> > > Thanks,
> > > Pravesh Shrivastava
> > >
> > >
> >
>
>



-- 
Cordialement.
Philippe Mouawad.


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Vamsi Krishna Maddali
Hi Pravesh,


In Jmeter 3.3 we used below command and got the summary.


sh jmeter -n -t <>.jmx -l <<file3.jtl/csv>> -e -o <>


Thanks,

Vamsi.



From: Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
Sent: 23 January 2018 17:08
To: JMeter Users List
Subject: JMeter not showing runtime execution summary

Hi Everyone,

I am using JMeter 3.1 for Performance Testing for one of my projects. When
I start execution in non-GUI mode using command

jmeter -n -t -l -e -o

It is not showing the runtime execution summary. It is directly showing end
of execution message after finishing the execution.

Is there any property to be enable to see the runtime execution summary?
Please suggest.


--
Thanks,
Pravesh Shrivastava


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Alexander Podelko
 I had a similar issue - only one empty line in the end of tests:Summariser: 
summary =      0 in 00:00:00 = **/s Avg:     0 Min: 9223372036854775807 
Max: -9223372036854775808 Err:     0 (0.00%)

In my case the problem was in:# Ignore SampleResults generated by 
TransactionControllers
# defaults to true 
So changing it tosummariser.ignore_transaction_controller_sample_result=falsein 
jmeter.properties fixed the issue as I have everything in 
TransactionControllers.

On Tuesday, January 23, 2018, 10:20:55 AM EST, Ivan Rancati 
<ivan.ranc...@gmail.com> wrote:  
 
 Probably you should try with JMeter 3.3

On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
pravesh.shrivast...@gmail.com> wrote:

> Yes, it is working in UI. And also giving me proper results in non GUI. The
> only thing is, I can't see the runtime summary
>
>
> > --
> > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > *To:* JMeter Users List
> > *Subject:* JMeter not showing runtime execution summary
> >
> > Hi Everyone,
> >
> > I am using JMeter 3.1 for Performance Testing for one of my projects.
> When
> > I start execution in non-GUI mode using command
> >
> > jmeter -n -t -l -e -o
> >
> > It is not showing the runtime execution summary. It is directly showing
> end
> > of execution message after finishing the execution.
> >
> > Is there any property to be enable to see the runtime execution summary?
> > Please suggest.
> >
> >
> > --
> > Thanks,
> > Pravesh Shrivastava
> >
> >
>
  

Re: JMeter not showing runtime execution summary

2018-01-23 Thread Antonio Gomes Rodrigues
Hi all,

Again

Hi,

By default, runtime execution summary is displayed every 30s
(check summariser.interval in jmeter.properties)

How long your test run?


2018-01-23 16:20 GMT+01:00 Ivan Rancati <ivan.ranc...@gmail.com>:

> Probably you should try with JMeter 3.3
>
> On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
> pravesh.shrivast...@gmail.com> wrote:
>
> > Yes, it is working in UI. And also giving me proper results in non GUI.
> The
> > only thing is, I can't see the runtime summary
> >
> >
> > > --
> > > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > > *To:* JMeter Users List
> > > *Subject:* JMeter not showing runtime execution summary
> > >
> > > Hi Everyone,
> > >
> > > I am using JMeter 3.1 for Performance Testing for one of my projects.
> > When
> > > I start execution in non-GUI mode using command
> > >
> > > jmeter -n -t -l -e -o
> > >
> > > It is not showing the runtime execution summary. It is directly showing
> > end
> > > of execution message after finishing the execution.
> > >
> > > Is there any property to be enable to see the runtime execution
> summary?
> > > Please suggest.
> > >
> > >
> > > --
> > > Thanks,
> > > Pravesh Shrivastava
> > >
> > >
> >
>


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Ivan Rancati
Probably you should try with JMeter 3.3

On Tue, Jan 23, 2018 at 1:08 PM, Pravesh Shrivastava <
pravesh.shrivast...@gmail.com> wrote:

> Yes, it is working in UI. And also giving me proper results in non GUI. The
> only thing is, I can't see the runtime summary
>
>
> > --
> > *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> > *Sent:* Tuesday, January 23, 2018 11:38 AM
> > *To:* JMeter Users List
> > *Subject:* JMeter not showing runtime execution summary
> >
> > Hi Everyone,
> >
> > I am using JMeter 3.1 for Performance Testing for one of my projects.
> When
> > I start execution in non-GUI mode using command
> >
> > jmeter -n -t -l -e -o
> >
> > It is not showing the runtime execution summary. It is directly showing
> end
> > of execution message after finishing the execution.
> >
> > Is there any property to be enable to see the runtime execution summary?
> > Please suggest.
> >
> >
> > --
> > Thanks,
> > Pravesh Shrivastava
> >
> >
>


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Pravesh Shrivastava
Yes, it is working in UI. And also giving me proper results in non GUI. The
only thing is, I can't see the runtime summary

On Jan 23, 2018 17:34, "Anil Gaur" <anilg...@live.com> wrote:

> Hi Pravesh,
>
> Is you script working properly in GUI mode?
>
>
>
> Anil
> --
> *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> *Sent:* Tuesday, January 23, 2018 11:54 AM
> *To:* Anil Gaur
> *Cc:* JMeter Users List
> *Subject:* Re: JMeter not showing runtime execution summary
>
> Hi Anil,
>
> It is also not working for me.
>
> On Jan 23, 2018 17:17, "Anil Gaur" <anilg...@live.com> wrote:
>
> To view run time summary in Jmeter Non GUI mode:-
>
> >Jmeter -n -t  Script.jmx   This command can give you complete execution
> summary.
>
>
>
> Thanks
> Anil Gaur
> --
> *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> *Sent:* Tuesday, January 23, 2018 11:38 AM
> *To:* JMeter Users List
> *Subject:* JMeter not showing runtime execution summary
>
> Hi Everyone,
>
> I am using JMeter 3.1 for Performance Testing for one of my projects. When
> I start execution in non-GUI mode using command
>
> jmeter -n -t -l -e -o
>
> It is not showing the runtime execution summary. It is directly showing end
> of execution message after finishing the execution.
>
> Is there any property to be enable to see the runtime execution summary?
> Please suggest.
>
>
> --
> Thanks,
> Pravesh Shrivastava
>
>


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Anil Gaur
Hi Pravesh,

Is you script working properly in GUI mode?



Anil

From: Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
Sent: Tuesday, January 23, 2018 11:54 AM
To: Anil Gaur
Cc: JMeter Users List
Subject: Re: JMeter not showing runtime execution summary

Hi Anil,

It is also not working for me.

On Jan 23, 2018 17:17, "Anil Gaur" 
<anilg...@live.com<mailto:anilg...@live.com>> wrote:
To view run time summary in Jmeter Non GUI mode:-

>Jmeter -n -t  Script.jmx   This command can give you complete execution 
>summary.



Thanks
Anil Gaur

From: Pravesh Shrivastava 
<pravesh.shrivast...@gmail.com<mailto:pravesh.shrivast...@gmail.com>>
Sent: Tuesday, January 23, 2018 11:38 AM
To: JMeter Users List
Subject: JMeter not showing runtime execution summary

Hi Everyone,

I am using JMeter 3.1 for Performance Testing for one of my projects. When
I start execution in non-GUI mode using command

jmeter -n -t -l -e -o

It is not showing the runtime execution summary. It is directly showing end
of execution message after finishing the execution.

Is there any property to be enable to see the runtime execution summary?
Please suggest.


--
Thanks,
Pravesh Shrivastava


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Pravesh Shrivastava
Hi Anil,

It is also not working for me.

On Jan 23, 2018 17:17, "Anil Gaur" <anilg...@live.com> wrote:

> To view run time summary in Jmeter Non GUI mode:-
>
> >Jmeter -n -t  Script.jmx   This command can give you complete execution
> summary.
>
>
>
> Thanks
> Anil Gaur
> --
> *From:* Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
> *Sent:* Tuesday, January 23, 2018 11:38 AM
> *To:* JMeter Users List
> *Subject:* JMeter not showing runtime execution summary
>
> Hi Everyone,
>
> I am using JMeter 3.1 for Performance Testing for one of my projects. When
> I start execution in non-GUI mode using command
>
> jmeter -n -t -l -e -o
>
> It is not showing the runtime execution summary. It is directly showing end
> of execution message after finishing the execution.
>
> Is there any property to be enable to see the runtime execution summary?
> Please suggest.
>
>
> --
> Thanks,
> Pravesh Shrivastava
>


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Pravesh Shrivastava
Hi Antonio,

It is set to 30 seconds. But still not giving runtime execution summary.

On Jan 23, 2018 17:19, "Antonio Gomes Rodrigues"  wrote:

> Hi,
>
> By default, runtime execution summary is displayed every 30s
> (check summariser.interval in jmeter.properties)
>
> How long your test run?
>
> Antonio
>
> 2018-01-23 12:38 GMT+01:00 Pravesh Shrivastava <
> pravesh.shrivast...@gmail.com>:
>
> > Hi Everyone,
> >
> > I am using JMeter 3.1 for Performance Testing for one of my projects.
> When
> > I start execution in non-GUI mode using command
> >
> > jmeter -n -t -l -e -o
> >
> > It is not showing the runtime execution summary. It is directly showing
> end
> > of execution message after finishing the execution.
> >
> > Is there any property to be enable to see the runtime execution summary?
> > Please suggest.
> >
> >
> > --
> > Thanks,
> > Pravesh Shrivastava
> >
>


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Antonio Gomes Rodrigues
Hi,

By default, runtime execution summary is displayed every 30s
(check summariser.interval in jmeter.properties)

How long your test run?

Antonio

2018-01-23 12:38 GMT+01:00 Pravesh Shrivastava <
pravesh.shrivast...@gmail.com>:

> Hi Everyone,
>
> I am using JMeter 3.1 for Performance Testing for one of my projects. When
> I start execution in non-GUI mode using command
>
> jmeter -n -t -l -e -o
>
> It is not showing the runtime execution summary. It is directly showing end
> of execution message after finishing the execution.
>
> Is there any property to be enable to see the runtime execution summary?
> Please suggest.
>
>
> --
> Thanks,
> Pravesh Shrivastava
>


Re: JMeter not showing runtime execution summary

2018-01-23 Thread Anil Gaur
To view run time summary in Jmeter Non GUI mode:-

>Jmeter -n -t  Script.jmx   This command can give you complete execution 
>summary.



Thanks
Anil Gaur

From: Pravesh Shrivastava <pravesh.shrivast...@gmail.com>
Sent: Tuesday, January 23, 2018 11:38 AM
To: JMeter Users List
Subject: JMeter not showing runtime execution summary

Hi Everyone,

I am using JMeter 3.1 for Performance Testing for one of my projects. When
I start execution in non-GUI mode using command

jmeter -n -t -l -e -o

It is not showing the runtime execution summary. It is directly showing end
of execution message after finishing the execution.

Is there any property to be enable to see the runtime execution summary?
Please suggest.


--
Thanks,
Pravesh Shrivastava


JMeter not showing runtime execution summary

2018-01-23 Thread Pravesh Shrivastava
Hi Everyone,

I am using JMeter 3.1 for Performance Testing for one of my projects. When
I start execution in non-GUI mode using command

jmeter -n -t -l -e -o

It is not showing the runtime execution summary. It is directly showing end
of execution message after finishing the execution.

Is there any property to be enable to see the runtime execution summary?
Please suggest.


--
Thanks,
Pravesh Shrivastava