[GitHub] jmeter issue #231: WIP: timer that produces poisson arrivals with given cons...

2016-10-19 Thread ra0077
Github user ra0077 commented on the issue: https://github.com/apache/jmeter/pull/231 Hi, My opinion is that the GUI is too complex because : Too much parameter You try to make too much different things in it And these things 1) "Specific number of ite

[GitHub] jmeter issue #231: WIP: timer that produces poisson arrivals with given cons...

2016-10-19 Thread vlsi
Github user vlsi commented on the issue: https://github.com/apache/jmeter/pull/231 > Too much parameter Well, UI is built by JMeter OOB: https://github.com/apache/jmeter/pull/231/files#diff-fc396f633dbdaf0a98c5472613e9190dR25 Do you know if BeanInfoSupport can create

Re: svn commit: r1765062 - in /jmeter/trunk: src/components/org/apache/jmeter/visualizers/ src/core/org/apache/jmeter/resources/ src/core/org/apache/jmeter/util/ src/core/org/apache/jmeter/visualizers

2016-10-19 Thread Milamber
Philippe, Probably a regression with the getRate() method? Before : return ((double) count / (double) elapsedTime ) * 1000; After: return value / ((double) elapsedTime / 1000); // 1000 = millisecs/sec * 1000 --> / 1000 On 15/10/2016 14:34, pmoua...@apache.org wrote: Modified: jmeter/trunk

Re: svn commit: r1765062 - in /jmeter/trunk: src/components/org/apache/jmeter/visualizers/ src/core/org/apache/jmeter/resources/ src/core/org/apache/jmeter/util/ src/core/org/apache/jmeter/visualizers

2016-10-19 Thread Philippe Mouawad
Hi Milamber, I don't think so: ((double) value / (double) elapsedTime ) * 1000 == value / ((double) elapsedTime / 1000) 1/1/1000 = *1000 Unless I misunderstand the problem. Thanks On Wed, Oct 19, 2016 at 8:13 PM, Milamber wrote: > Philippe, > > Probably a regression with the getRate() method?

Re: svn commit: r1765062 - in /jmeter/trunk: src/components/org/apache/jmeter/visualizers/ src/core/org/apache/jmeter/resources/ src/core/org/apache/jmeter/util/ src/core/org/apache/jmeter/visualizers

2016-10-19 Thread Milamber
You are right. I have not seen the parentheses... On 19/10/2016 20:55, Philippe Mouawad wrote: Hi Milamber, I don't think so: ((double) value / (double) elapsedTime ) * 1000 == value / ((double) elapsedTime / 1000) 1/1/1000 = *1000 Unless I misunderstand the problem. Thanks On Wed, Oct 19,