Re: Store extracted data in a file

2011-10-17 Thread apc
Actually path you entered in FFW is relative to JMeter start directory, like every JMeter file path. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Store-extracted-data-in-a-file-tp4757868p4910282.html Sent from the JMeter - User

Re: Store extracted data in a file

2011-10-17 Thread apc
Ok, step by step: 1. I open JMeter at my ubuntu via ctrl+F2 dialog 2. I add Thread Group 3. I add Dummy Sampler 4. I add Flexible File Writer 5. I add Simple Data Writer and specify testResults.jtl as Filename Everything else is kept by default. Then I run the test. I can see that

Re: Constant Throughput Timer vs Throughput Shaping Timer (JMeter plugin)?

2011-10-11 Thread apc
There is example test plan shipped with plugins. Try looking at it, it illustrates the capabilities of Throughput Shaping Timer. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context:

Re: CPU utilization in jmeter plugin

2011-10-07 Thread apc
vamba, You need to have: 1. A working performance test to put load on system 2. Successfully working CPU and memory PerfMon collector If you have succeeded with both parts then you can begin tests and interpret results. For step 1 you may find help here. For step 2 seek for help at PerfMon

Re: CTRL+Z as undo

2011-09-30 Thread apc
a lot of code changes... I understand it, but not having an undo in JMeter is really bad experience. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p4856915.html Sent from the JMeter - User mailing list archive

Re: CTRL+Z as undo

2011-09-30 Thread apc
God bless you! - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p4857619.html Sent from the JMeter - User mailing list archive at Nabble.com. -

Re: CTRL+Z as undo

2011-09-28 Thread apc
yep, Undo feature would be great breakthrough. I investigated this topic in JMeter code some time ago and found it a bit complex for me, I failed to make patch for this. Maybe sebb see ways for implementing this. Even 1-10 undo levels would be great. Could we just save TestTree clones array and

Re: kingry...@gmail.com

2011-09-20 Thread apc
Do you use some Post-Processors, Extractors? Maybe you missed some more parameters to pass between requests, like sessionID or smth like this. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/kingrythm-gmail-com-tp4818748p4822036.html

Re: Store extracted data in a file

2011-09-20 Thread apc
Your plugins setup seems ok, it is placed and configured well for your task. The FFW will create the file, if file exists it will be appended with data. Location of the file for your configuration 'testResults.txt' will be in JMeter current dir. It may be your home dir, JMeter bin dir or other

Re: kingry...@gmail.com

2011-09-19 Thread apc
So you need to parse viewstate parameters from previous request and pass them in following requests. I see you using POST-back ASP.NET app? - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/kingrythm-gmail-com-tp4818748p4819920.html Sent

Re: Make JMeter report error messages in console

2011-09-19 Thread apc
It turned out that Console Status Logger is much similar to http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Generate_Summary_Results Generate Summary Results native plugin... But I never tried it myself, could you? Is it helps, too? - -- Andrey Pohilko JP@GC Maintainer

Re: Make JMeter report error messages in console

2011-09-14 Thread apc
Just set log_file= in jmeter.properties and it will print all log messages to console. Or use Console Status Logger plugin from jp@gc - -- Andrey Pohilko JP@GC Maintainer -- View this message in context:

Re: Very long tests with huge JTL log file

2011-09-08 Thread apc
I know none. But what the problem with huge files? Why you don't like them? - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Very-long-tests-with-huge-JTL-log-file-tp4783083p4783110.html Sent from the JMeter - User mailing list

Re: Store extracted data in a file

2011-09-05 Thread apc
Well, I tested FFW at tens of thousands of writes per second... It does good. Yep, it depends on physical disk speed, but you'd find bottleneck in JMeter performance earlier... And configuration issues with database is not what peolple like... If that not matter for user, he can use DB of course.

Re: Store extracted data in a file

2011-09-02 Thread apc
I always use Dummy Sampler and Flexible File Writer for that task. It writes correctly from multiple threads. The trick is to set up Dummy Sampler and put your ${variable} into its Response Data field. Then attach FFW as a child to it, set up file name to write and specify writing format:

JP@GC release 0.4.2

2011-08-30 Thread apc
Hi all, JMeter Plugins at Google Code (JP@GC) has released next version 0.4.2 and suggests everyone upgrading to latest. Download link: http://code.google.com/p/jmeter-plugins/downloads/detail?name=JMeterPlugins-0.4.2.zip The main features added is: * Loadosophia.org integration for test

Re: Custom Reporting - Print variables to file

2011-08-26 Thread apc
You have some options to achieve this: 1. Use BeanShell components. It is possible for sure, but I never did this myself. 2. Use Dummy Sampler + Flexible File Writer plugins from JP@GC - I use this way to plot graphs for variable values during test and write some data to files. - -- Andrey

Re: jMeter Log Files (distrubited testing) - Who's running a test?

2011-08-15 Thread apc
It's easy to write a plugin that will notify your front-end on slaves starting/stopping test... - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/jMeter-Log-Files-distrubited-testing-Who-s-running-a-test-tp4700649p4700686.html Sent from

Re: Reg: Scheduler Configurations

2011-08-02 Thread apc
If I get your case right, then: 1. You need to use sheduled start of JMeter test. Use cron/at at Linux or Scheduled Tasks at Windows. 2. You need some delay (10 sec) before actual test actions start. Configure Stepping Thread Group to 10 sec initial delay 3. You need fixed test duration. Configure

Re: Reg: Scheduler Configurations

2011-08-01 Thread apc
Have you tried Stepping Thread Group yet? - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Reg-Scheduler-Configurations-tp4655254p4655790.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: jp@gc - HTTP Raw Request for POST requests

2011-07-27 Thread apc
There's some difference in request that you send via JMeter and another tool. Use Wireshark to find that difference. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/jp-gc-HTTP-Raw-Request-for-POST-requests-tp4635060p4639181.html Sent

Re: jp@gc - HTTP Raw Request for POST requests

2011-07-26 Thread apc
Hi, Your request missing Content-Length header, required for correct POST request. Everything else is ok. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/jp-gc-HTTP-Raw-Request-for-POST-requests-tp4635060p4635139.html Sent from the

Re: jp@gc - HTTP Raw Request for POST requests

2011-07-26 Thread apc
Note you missed double newline between headers and body... - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/jp-gc-HTTP-Raw-Request-for-POST-requests-tp4635060p4635515.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Jmeter Performance using, jmeter-server VS running in the local instance

2011-07-25 Thread apc
Hi, Eric! Very interesting and important investigations! Could you tell what happening with network load on your remote tests? Could it be that bottleneck is in network? - -- Andrey Pohilko JP@GC Maintainer -- View this message in context:

Re: Response comparison from multiple runs

2011-07-22 Thread apc
Hi, Kumar, http://loadosophia.org Loadosophia.org aims on such features, as continuous load test results analysis. Try it! - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Response-comparison-from-multiple-runs-tp4623472p4623590.html

Re: binary file writer

2011-07-19 Thread apc
Hi, Take a look at http://code.google.com/p/jmeter-plugins/wiki/FlexibleFileWriter - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/binary-file-writer-tp4611327p4611924.html Sent from the JMeter - User mailing list archive at

Re: embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread apc
Hmmm, are you sure that embedding jmeter is the most efficient way to solve your problem? Sounds so complex... I know the product that embed JMeter - it's http://www.msas.in/meterplus.html - -- Andrey Pohilko JP@GC Maintainer -- View this message in context:

Re: Sample Time(ms) always shows 0

2011-07-19 Thread apc
Possibly you missed calling result.sampleEnd() - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Sample-Time-ms-always-shows-0-tp4610252p4611938.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: binary file writer

2011-07-19 Thread apc
What is binary option? - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/binary-file-writer-tp4611327p4611956.html Sent from the JMeter - User mailing list archive at Nabble.com.

RE: embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread apc
Well, I believe that JMeter is still the best tool for you, I doubt the ways of integration... It's not too hard to get JMeter to run from JARs, but it's not graceful way as I see. I think there should be some plugins that do solve your task without writing too much code that linked too close with

Re: binary file writer

2011-07-19 Thread apc
Thank you, now I get it. No, FFW is not binary in this way. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/binary-file-writer-tp4611327p4612259.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Results Analysis

2011-07-13 Thread apc
Just use this: http://code.google.com/p/jmeter-plugins/ - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Results-Analysis-tp4578812p4583117.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Invitation to connect on LinkedIn

2011-07-12 Thread apc
Magnificent :) - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/problems-in-performance-testing-of-login-page-using-jmeter-tp4447773p4577841.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Who can share JRL files?

2011-07-12 Thread apc
Thank you very much! This will help me a lot! - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Who-can-share-JRL-files-tp4564679p4579387.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Jmeter IterationListener: Does it have an iterationEnd event?

2011-07-11 Thread apc
Maybe you mean ThreadListener? - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Jmeter-IterationListener-Does-it-have-an-iterationEnd-event-tp4575793p4576028.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Is There a Defined Variable Function in Jmeter?

2011-07-11 Thread apc
Hi, Bruce, Maybe you want to join JP@GC team and write custom functions for popular plugins set? - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/Is-There-a-Defined-Variable-Function-in-Jmeter-tp4575799p4576038.html Sent from the

Who can share JRL files?

2011-07-08 Thread apc
Hi all, I'm working on some new killer-feature for JMeter (sexy even more than JP@GC plugins set). I want to see how real-world JTL files look like. The files that you save from JMeter during your performance tests. Could you send me a couple to my private address? Please no confidential data,

Re: Local Variable Controller?

2011-07-06 Thread apc
Hi, Bruce, Have you tried this controller? http://code.google.com/p/jmeter-plugins/wiki/ParameterizedController -- View this message in context: http://jmeter.512774.n5.nabble.com/Local-Variable-Controller-tp4558656p4558775.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: TCPSampler not logging info on debug mode

2011-06-28 Thread apc
There is only one debug level message in TCPClientImpl class. The others is warn and error level messages only. -- View this message in context: http://jmeter.512774.n5.nabble.com/TCPSampler-not-logging-info-on-debug-mode-tp4529831p4530843.html Sent from the JMeter - User mailing list archive at

Re: TCPSampler not logging info on debug mode

2011-06-28 Thread apc
You're right. Have you tried setting DEBUG level in jmeter.properties file? -- View this message in context: http://jmeter.512774.n5.nabble.com/TCPSampler-not-logging-info-on-debug-mode-tp4529831p4531908.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: advice on setup

2011-06-22 Thread apc
... or http://code.google.com/p/jmeter-plugins/wiki/ThroughputShapingTimer Throughput Shaping Timer -- View this message in context: http://jmeter.512774.n5.nabble.com/advice-on-setup-tp4513066p4513238.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Constant Throughput timer and using Calculate throughput based on all active threads (shared)

2011-06-17 Thread apc
Maybe http://code.google.com/p/jmeter-plugins/wiki/ThroughputShapingTimer Throughput Shaping Timer can help you? -- View this message in context:

Re: Output by number of users

2011-06-13 Thread apc
Hi, Check out this graph: http://code.google.com/p/jmeter-plugins/wiki/ResponseTimesVsThreads -- View this message in context: http://jmeter.512774.n5.nabble.com/Output-by-number-of-users-tp4485598p4485629.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: IfController and threadNum

2011-06-10 Thread apc
single = means value setting double == means comparison -- View this message in context: http://jmeter.512774.n5.nabble.com/IfController-and-threadNum-tp4475759p4475768.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Stop on criteria/save stats before end of test

2011-06-02 Thread apc
Hi, look here: http://code.google.com/p/jmeter-plugins/wiki/AutoStop -- View this message in context: http://jmeter.512774.n5.nabble.com/Stop-on-criteria-save-stats-before-end-of-test-tp4446383p4447844.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: will jmeter supports .net application

2011-05-26 Thread apc
Your question is so short, so my answer be that way: Yes, it supports everything :) Further details depends... -- View this message in context: http://jmeter.512774.n5.nabble.com/will-jmeter-supports-net-application-tp4427743p4427766.html Sent from the JMeter - User mailing list archive at

Re: will jmeter supports .net application

2011-05-26 Thread apc
Well, start with http://jakarta.apache.org/jmeter/usermanual/ and http://wiki.apache.org/jakarta-jmeter/ There is no need to copy all this knowledge here. -- View this message in context: http://jmeter.512774.n5.nabble.com/will-jmeter-supports-net-application-tp4427743p4428187.html Sent from

Re: will jmeter supports .net application

2011-05-26 Thread apc
Well, start with http://jakarta.apache.org/jmeter/usermanual/ and http://wiki.apache.org/jakarta-jmeter/ There is no need to copy all this knowledge here. -- View this message in context: http://jmeter.512774.n5.nabble.com/will-jmeter-supports-net-application-tp4427743p4428197.html Sent from

Re: Re: thread should be equal to throughput/sec??

2011-05-26 Thread apc
If your throughput equal to thread count it just means that your response time is 1 second. It is quite bad and slow to end-users. Good situation is when you have hight throughput with any threads count. -- View this message in context:

Re: thread should be equal to throughput/sec??

2011-05-25 Thread apc
No, it is not. Throughput depends on response times. Throughput=threads count * 1000ms / response time -- View this message in context: http://jmeter.512774.n5.nabble.com/thread-should-be-equal-to-throughput-sec-tp4422420p4424649.html Sent from the JMeter - User mailing list archive at

Re: how to Set Load Time programmaticly via Beanshell?

2011-05-23 Thread apc
You could use Latency property of SampleResult to store your value. SampleResult.setLatency(450); -- View this message in context: http://jmeter.512774.n5.nabble.com/how-to-Set-Load-Time-programmaticly-via-Beanshell-tp4418353p4418427.html Sent from the JMeter - User mailing list archive at

Re: Betr.: Re: how to Set Load Time programmaticly via Beanshell?

2011-05-23 Thread apc
Well, you could only plot Latencies Over Time then... The problem is that you can't set response time directly on SampleResult. You can do this on sub-samples, calling res.sampleStart(), then Thread.delay(450); then res.SampleEnd() This will give you sub-sample with correct response time. --

Re: Using Jmeter plugins for formating Jmeter outcomes (command line)

2011-05-17 Thread apc
Dubi, 1. It is caused by old Java runtime version. Please install 1.6 since plugins require it. 2. You use --plugin-type ResponseTimesOverTime, so you'll have CSV data for ResponseTimesOverTime Graph. Use --plugin-type AggregateReport for short summary csv. -- View this message in context:

Re: Jmeter Summary Report

2011-05-16 Thread apc
Hi, Maybe this will help you in non-GUI mode: http://code.google.com/p/jmeter-plugins/wiki/JMeterPluginsCMD -- View this message in context: http://jmeter.512774.n5.nabble.com/Jmeter-Summary-Report-tp4398099p4399672.html Sent from the JMeter - User mailing list archive at Nabble.com.

RE: Disrtibuted testing - saving and combining results

2011-05-16 Thread apc
Which figure? This mailing list does not support attaches, please use hyperlinks instead. -- View this message in context: http://jmeter.512774.n5.nabble.com/Disrtibuted-testing-saving-and-combining-results-tp4390702p4400029.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Jmeter Summary Report

2011-05-16 Thread apc
jmeter -n -t test_plan.jmx -j trader_1.log -l results.jtl will give you results.jtl, loadable into listeners -- View this message in context: http://jmeter.512774.n5.nabble.com/Jmeter-Summary-Report-tp4398099p4400598.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Disrtibuted testing - saving and combining results

2011-05-13 Thread apc
Better include host names in Thread Group names. Then then you'd load several JTL into one listener and see aggregate values. -- View this message in context: http://jmeter.512774.n5.nabble.com/Disrtibuted-testing-saving-and-combining-results-tp4390702p4392739.html Sent from the JMeter - User

Re: What is possible and what is not possible test with JMETER?

2011-05-11 Thread apc
Configuration wise, I was looking for the way it handles java property file where we can set up key+value pair, I haven't found any, in turn I'll need to use lots of csv files. It works but less flexible and not readable. Look this: http://code.google.com/p/jmeter-plugins/wiki/VariablesFromCSV

Re: Use of Wiki - AttachFile action enabling

2011-05-10 Thread apc
Try this: code.google.com/p/jmeter-plugins/wiki/JMeterPluginsCMD -- View this message in context: http://jmeter.512774.n5.nabble.com/Use-of-Wiki-AttachFile-action-enabling-tp4382303p4383935.html Sent from the JMeter - User mailing list archive at Nabble.com.

RE: Throughput with many jmeter servers - distributed testing

2011-05-10 Thread apc
No, threads just will work for specified time period and end all at the same time. Like this: http://code.google.com/p/jmeter-plugins/wiki/SteppingThreadGroup -- View this message in context:

RE: Use of Wiki - AttachFile action enabling

2011-05-10 Thread apc
Yes, the link at JMeter official page would make more people using JMeter, because it looks better with plugins. Not much people even try searching custom plugins in google, because they not suggested obviously at JMeter page. -- View this message in context:

Re: Throughput with many jmeter servers - distributed testing

2011-05-09 Thread apc
Maybe it will be more suitable to force all agents to work for the same time period and don't finish until then? -- View this message in context: http://jmeter.512774.n5.nabble.com/Throughput-with-many-jmeter-servers-distributed-testing-tp4380996p4381467.html Sent from the JMeter - User mailing

RE: Advice

2011-05-06 Thread apc
It this applicable to you?: 1. Create 5 thread groups and set inside each of them Raw Data Source PreProcessor 2. Prepare 5 files in Raw Request format for 5 UDP streams 3. Set filenames in Raw Data Source -- View this message in context:

Re: Which functions JMeter lacks for you?

2011-05-05 Thread apc
Well, people don't like programming... So I'll provide them handy and clear-to-use additional functions. -- View this message in context: http://jmeter.512774.n5.nabble.com/Which-functions-JMeter-lacks-for-you-tp4370389p4372475.html Sent from the JMeter - User mailing list archive at

Re: Regular expression extractor to capture hidden session value.

2011-05-04 Thread apc
I think Firebug operates parsed and re-generated HTML. You better use Jmeter's View Results Tree Response Data tab and try to debug regexp there. -- View this message in context:

Re: Regular expression extractor to capture hidden session value.

2011-05-04 Thread apc
:) Good luck! -- View this message in context: http://jmeter.512774.n5.nabble.com/Regular-expression-extractor-to-capture-hidden-session-value-tp4370013p4370194.html Sent from the JMeter - User mailing list archive at Nabble.com.

Which functions JMeter lacks for you?

2011-05-04 Thread apc
Hi all, I started implementing additional functions (similar to native http://jakarta.apache.org/jmeter/usermanual/functions.html). For now I plan to add 2 functions: __doubleSum() and __strLen() Maybe people here can tell me more cases where additional functions needed, but jmeter doesn't have

Re: jmeter.log messages truncated

2011-04-26 Thread apc
Well, the code shows that message could not be truncated by JMeter it seems in truncated in beanshell. But there is exceprion object with stack trace that could be reported to log in this case... -- View this message in context:

JP at GC release 0.4.1

2011-04-25 Thread apc
Hi all! New version of JMeter Plugins at Google Code 0.4.1 is now available: http://code.google.com/p/jmeter-plugins/downloads/detail?name=JMeterPlugins-0.4.1.zip It contains many interesting features like AutoStop and Throughput Shaping Timer, see items tagged New at the project homepage:

Re: Definition of Sample as used in Graph Results

2011-04-22 Thread apc
Hi! Sample is the result of every Sampler, for example if you have HTTP Request, it will provide a Sample for each request it made. Make note that Samples may be compound and contain a tree of sub-samples inside. Many Listeners (and maybe Graph Results) treat them as independent samples also.

Re: Automated jmeter report

2011-04-21 Thread apc
Yes, this command-line switches will become available when RC become release. This will happen in about a week. Sorry for this inconvinience, since I try to document all the features as soon as I implement them, before putting download file. -- View this message in context:

Re: Automated jmeter report

2011-04-21 Thread apc
Hey! I mistaken! There is newer download, it is RC1 in downloads section. It must contain all command-line switches in it. -- View this message in context: http://jmeter.512774.n5.nabble.com/Automated-jmeter-report-tp4314958p4330443.html Sent from the JMeter - User mailing list archive at

Re: Unable to load test contant 1000 users

2011-04-20 Thread apc
Hi, Look here: http://jmeter.512774.n5.nabble.com/Testing-for-1000-threads-using-Jmeter-td4295545.html -- View this message in context: http://jmeter.512774.n5.nabble.com/Unable-to-load-test-contant-1000-users-tp4314950p4315181.html Sent from the JMeter - User mailing list archive at

Re: Automated jmeter report

2011-04-20 Thread apc
Hi, Here's your command-line automation tool: http://code.google.com/p/jmeter-plugins/wiki/JMeterPluginsCMD -- View this message in context: http://jmeter.512774.n5.nabble.com/Automated-jmeter-report-tp4314958p4315205.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: How to Verify the text message response by using Jmeter Beanshell Assertion

2011-04-18 Thread apc
Well, it is JMeter GUI bug - BeanShell Assertion has long vertical scrollbar at the right side of panel. If you scroll to the bottom, you'll see helper text explaining that some predefined variables defined, including ResponseData. I hope one day JMeter team will fix that bug, or just move

Re: JMS Point-to-Point Sampler one request / multiple receive messages

2011-04-15 Thread apc
Yes, it is. But you'll need a little logic controllers. -- View this message in context: http://jmeter.512774.n5.nabble.com/JMS-Point-to-Point-Sampler-one-request-multiple-receive-messages-tp4303469p4304869.html Sent from the JMeter - User mailing list archive at Nabble.com.

JP@GC 0.4.1 beta testing

2011-04-14 Thread apc
Hi all, We plan to release next version of JMeter Plugins at Google Code 0.4.1 on 24th of April. The main features will be command-line tool and throughput shaper. Everybody encouraged to try new version and report any issues found. See Roadmap for the list of changes:

Re: Executing request with JSON

2011-04-13 Thread apc
Use TCP Request or Raw Request, it will work for you, but only without keep-alive -- View this message in context: http://jmeter.512774.n5.nabble.com/Executing-request-with-JSON-tp4296082p4300225.html Sent from the JMeter - User mailing list archive at Nabble.com.

How to override Host header

2011-04-11 Thread apc
How can I override Host header in HTTP request? I tried adding HTTP Header Manager and set Host header in it, but I see no changes in my HTTP requests. Adding to hosts file is not applicable since I have no root privileges at test generator. Any ideas? Best regards, Andrey -- View this

Re: Testing for 1000 threads using Jmeter

2011-04-11 Thread apc
Which option do you have in Thread Groups selected in Action to be taken after sampler error? I suppose it is Stop Thread and your samplers generate errors, threads stop and you can't have more threads... -- View this message in context:

Re: Testing for 1000 threads using Jmeter

2011-04-11 Thread apc
Ah, now I see. Response Times Over Time cannot sum up threads count from different machines. The workaround is to name thread groups like ThreadGroup - ${__machineName()} and use Aggregate display. Try it and tell us if it works. Corresponding issue:

Re: Testing for 1000 threads using Jmeter

2011-04-11 Thread apc
No, I mean using ${__machineName()} function call in thread group names. This will automatically substitute it with host name. -- View this message in context: http://jmeter.512774.n5.nabble.com/Testing-for-1000-threads-using-Jmeter-tp4295545p4295940.html Sent from the JMeter - User mailing

Re: Automatic generation of aggregate reports

2011-04-05 Thread apc
The tool requires JMeterPlugins.jar to be placed in lib/ext also, that's why it cannot find class. There's an issue that needs to be resolved yet: http://code.google.com/p/jmeter-plugins/issues/detail?id=33#c0 -- View this message in context:

Re: Automatic generation of aggregate reports

2011-04-05 Thread apc
Yes, I mark all developer snapshot as deprecated, to prevent users from treating it as ready-to-use. It is in the middle of development, still contains many bugs. -- View this message in context: http://jmeter.512774.n5.nabble.com/Automatic-generation-of-aggregate-reports-tp4281459p4283680.html

Re: Automatic generation of aggregate reports

2011-04-05 Thread apc
JMeter home detected automatically when tool starts, that's why tool requires to be placed it lib/ext. Where from do you try to start it? I doubt maybe it should better be placed into JMeter's bin directory... -- View this message in context:

Re: Automatic generation of aggregate reports

2011-04-05 Thread apc
Oh, I'm so sorry, but the tool is built against Jmeter 2.4, and you use version 2.3 which seems don't have required methods inside it. Would it possible for you to upgrade your JMeter installation? -- View this message in context:

Re: Automatic generation of aggregate reports

2011-04-05 Thread apc
Hold on little more, Toni, we're almost there! I see no theoretical problems in running the test on 2.3 then running the tool on 2.4. Worth trying! -- View this message in context: http://jmeter.512774.n5.nabble.com/Automatic-generation-of-aggregate-reports-tp4281459p4284393.html Sent from

Re: Automatic generation of aggregate reports

2011-04-04 Thread apc
Too many people asking for it, I've implemented it: Download: http://code.google.com/p/jmeter-plugins/downloads/detail?name=JMeterPlugins-0.4.1-snapshot6.zip Doc: http://code.google.com/p/jmeter-plugins/wiki/JMeterPluginsCMD -- View this message in context:

Re: fileupload test with JMeter

2011-04-01 Thread apc
Seems you using Windows... Just ask notepad to open that file. I saved that file from Wireshark network sniffer, recorded POST request and saved full request bytes into raw file. -- View this message in context:

Re: fileupload test with JMeter

2011-04-01 Thread apc
Ok! 1. Download latest snapshot 5 here: http://code.google.com/p/jmeter-plugins/downloads/list?can=1 2. Start jmeter with command line jmeter -JdirectFileSender=1 3. Add thread group and HTTP Raw Request to your test plan. For debug, set up thread group to make single iteration in single thread

Re: fileupload test with JMeter

2011-04-01 Thread apc
You should leave only file path in Request Data, just F:/test/Gagan1 and nothing else. Full request will be read from that file including POST..., HTTP headers etc. -- View this message in context: http://jmeter.512774.n5.nabble.com/fileupload-test-with-JMeter-tp4267154p4275152.html Sent from

Re: fileupload test with JMeter

2011-03-31 Thread apc
My opinion that is is JMeter's issue, but your case is pretty special, and you need a smart sampler which will read file and write its contents into network. I know no existing sampler that can do it, but it can be implemented easily (by me, at least). -- View this message in context:

Re: fileupload test with JMeter

2011-03-31 Thread apc
Well, I wrote a file reader-sampler which gets filename and send those file contents via TCP socket. File must contain full HTTP request, as in example here: http://jmeter-plugins.googlecode.com/svn-history/trunk/test/kg/apc/jmeter/samplers/testSendFile.raw Would you like to test it that way

Re: Want to save Aggregate and Summary report in csv format automatically

2011-03-31 Thread apc
Hi, Look here: http://groups.google.com/group/jmeter-plugins/browse_thread/thread/831d2a759f051ab4 And here: http://code.google.com/p/jmeter-plugins/wiki/JMeterPluginsCMD Is it applicable to your case? -- View this message in context:

Re: Want to save Aggregate and Summary report in csv format automatically

2011-03-31 Thread apc
Tool must be called either from command prompt/unix console or from batch scripts. First become familiar with tool usage making its runs from your computer command line. The example in wiki page is good to start with. Note that you can generate csv only for custom plugins set. I think response

Re: HTTP connexions not released, thread block

2011-03-30 Thread apc
Have you cleared Keep-Alive checkbox? -- View this message in context: http://jmeter.512774.n5.nabble.com/HTTP-connexions-not-released-thread-block-tp4269844p4271145.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: RE: question about duration assertion

2011-03-30 Thread apc
Yes, it creates all threads at the start of the test. And standard Thread Group do the same. 10K threads seems to be bad option for single generator machine. Try distributed testing! -- View this message in context:

RE: RE: question about duration assertion

2011-03-30 Thread apc
Well, you can use Wireshark network sniffer to investigate actual network response times and prove either JMeter or your test setup is wrong. -- View this message in context: http://jmeter.512774.n5.nabble.com/question-about-duration-assertion-tp4269021p4271232.html Sent from the JMeter - User

RE: RE: question about duration assertion

2011-03-30 Thread apc
No, JMeter is pretty fair with response times. The problem is somewhere else. I suggest you put the load without AutoStop and look at online response times. When they hit 20s - do request with your browser. I think you'll get long waiting time. Because somewhere in your test infrastructure you

Re: question about duration assertion

2011-03-29 Thread apc
Check this out: http://code.google.com/p/jmeter-plugins/wiki/AutoStop Note that it is available in 0.4.1 only, currently in snapshot4 -- View this message in context: http://jmeter.512774.n5.nabble.com/question-about-duration-assertion-tp4269021p4269050.html Sent from the JMeter - User mailing

  1   2   >