Re: Error inserting JSON string to Postgres DB

2023-12-02 Thread Felix Schumacher
Inline image Inline image On Saturday, December 2, 2023 at 05:58:52 AM EST, Felix Schumacher wrote: Hi Jun, I am not sure, what you tried already. When I place the following text into a JDBC Sampler's query field, I get no errors: create table something (id int, data json); insert into

Re: Error inserting JSON string to Postgres DB

2023-12-02 Thread Felix Schumacher
Hi Jun, I am not sure, what you tried already. When I place the following text into a JDBC Sampler's query field, I get no errors: createtablesomething(idint,datajson); insertintosomethingvalues(1,'{"name": "whatever"}'::json); Same result, when I remove the casting and use

Re: [Jmeter] URL with "," in CSV

2023-04-07 Thread Felix Schumacher
Having had a look at the current code, we already add the separator char to the specialChars and my simple test quotes the comma variable. (minimal example test attached) Did I miss something? Felix Am 07.04.23 um 11:05 schrieb Felix Schumacher: Could not you change the separator char

Re: [Jmeter] URL with "," in CSV

2023-04-07 Thread Felix Schumacher
Could not you change the separator char to one that is not contained in your data? Otherwise, you could open an issue or even a PR to add the separator char to the specialChars. Felix Am 7. April 2023 10:56:30 MESZ schrieb OUFDOU Anas : >Hello, > >With URL having "," like (

Re: [JMETER] Log on multiple line in CSV

2023-04-01 Thread Felix Schumacher
Hi Anas, I can think of three more ways to achieve your goal. (Two of them are sketched out in the attached test plan). * Use a listener (as already proposed by Dmitri), but use it to change the assertion messages.    This can be done with a JSR 223 Listener with the following (Groovy)

Re: JDBC Request - get results in microseconds or nanoseconds

2023-03-26 Thread Felix Schumacher
Am 25.03.23 um 10:14 schrieb Tanja Santner: Hi, I'm using JMeter 5.5 for testing my PostgreSQL database with JDBC Request. I'm getting my results in milliseconds - is there any way to get the results in nanoseconds or microseconds for more precise results? With JMeter's built-in timer, you

Re: How to use __evalVar

2022-09-05 Thread Felix Schumacher
Another important difference here (assuming this is groovy code in a jsr223 script), you are assigning Groovy variables, but __evalVar works on JMeter variables. To set a JMeter variable from within Groovy code, use vars.put("name", value). And to reiterate: Don't confuse ${...} from JMeter

Re: How to replace a string in a variable that came from a CSV Data Config?

2022-07-26 Thread Felix Schumacher
The __evalVar should work. How are you calling it? Given two variables with the following content (YAML like syntax) body: "Hello, ${subject}!" subject: "World" you can render $body as "template" by using ${__evalVar(body)}, which should result in "Hello, World!". Felix Am 26.07.22 um

Re: Jmeter | Connection Reset error

2022-07-22 Thread Felix Schumacher
If you want to get even more logging output, you can set the Java system property javax.net.debug to 'all' or 'ssl'. For detailed information look https://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html#Debug Felix Am 22.07.22 um 13:24 schrieb Harshit

Re: Jmeter | Connection Reset error

2022-07-22 Thread Felix Schumacher
That output might be a good hint. If you google for "ssl unsafe legacy renegotiation  java" you might find the page https://docs.oracle.com/javase/8/docs/technotes/guides/security/jsse/tls-renegotiation-issue.html Try to fix the server. For testing purposes, you might follow the steps

Re: jmeter influxdb backend listener and querying

2022-07-20 Thread Felix Schumacher
I don't think, that you can get the median back from the other percentile values. If you need it, let the listener calculate and transfer those values. mean("pct90.0") probably gives back the mean of the 90 percentile values that you selected. But maybe I misunderstood your question. Felix

Re: Jmeter | Connection Reset error

2022-07-20 Thread Felix Schumacher
Am 20.07.22 um 15:39 schrieb Harshit Gothalkar: Hello Deepak Ji, The Application is Web portal (with https enabled) So My understanding of telnet to the application IP, will give insight on connectivity part which is happening. That’s what I tried to verify connectivity. What did you get

Re: How to escape characters in strings in CSV Data Set Config

2022-07-19 Thread Felix Schumacher
Am 19.07.22 um 01:28 schrieb ohaya: Hi, I was able to get this working by change the "Delimiter" in the CSV Data Set Config to "@", which isn't occurring in any of the CSV lines. Good to know, that this helped you. You could also try to use quoted data. But you have to make sure, that

Re: How to escape characters in strings in CSV Data Set Config

2022-07-19 Thread Felix Schumacher
Am 18.07.22 um 23:07 schrieb ohaya: Hi, I tried replacing the "," in the CSV string with %2C, but when it sent the request body if left the %2C literally in the CSV string :(!! I think at the moment the delimiter can be a single character only (\t counts as a single tab). Felix

Re: Non HTTP response code: java.net.SocketException Issue

2022-07-19 Thread Felix Schumacher
Am 19.07.22 um 12:05 schrieb Smruti Koyande: Hello, I am trying to do Load testing for 500user per sec. but getting below error after 135 hits. Server and memory utilization are proper. HTTP response code: org.apache.http.conn.HttpHostConnectException Response message:Non HTTP response

Re: Repeatedly trying to load included modules

2022-07-18 Thread Felix Schumacher
Am 13.07.22 um 17:00 schrieb Tong Sun: On Wed, Jul 13, 2022 at 10:31 AM Felix Schumacher wrote: I think it is a TODO from the past. See https://github.com/apache/jmeter/blob/master/src/components/src/main/java/org/apache/jmeter/control/IncludeController.java#L61 You probably have five

Re: Is this a bug? Cookies are in the Request Body...

2022-07-16 Thread Felix Schumacher
sources. That would need a bit more logic. Sorry. If you think this is too upsetting, raise an enhancement bug. Felix -- Robin D. Wilson CELL: 512-426-3929 rwils...@gmail.com On Sat, Jul 16, 2022 at 5:57 AM Felix Schumacher < felix.schumac...@internetallee.de> wrote: Without seeing yo

Re: CSS Assertion

2022-07-16 Thread Felix Schumacher
Hi Dave. At the moment,  there is no such assertion directly available. You can achieve this by combining an extractor and add a validator on the extracted data. If you want to contribute a direct assertion, you can either go the route of publishing a plugin for yourself:

Re: Is this a bug? Cookies are in the Request Body...

2022-07-16 Thread Felix Schumacher
Without seeing your test, it is a bit difficult to answer without guessing. Guessing, I would say, the cookie has a secure flag set and you are using http (which is not considered secure). Try a simple test case for yourself, add a cookie manager, a view results tree and two samplers to

Re: Repeatedly trying to load included modules

2022-07-13 Thread Felix Schumacher
I think it is a TODO from the past. See https://github.com/apache/jmeter/blob/master/src/components/src/main/java/org/apache/jmeter/control/IncludeController.java#L61 You probably have five threads and each has its own copy of the IncludeController. Is that the case? Is the loading of the

Re: How to get Thread Group number

2022-07-11 Thread Felix Schumacher
As Groovy seems not to care that much about private/public/protected status of variables, you can access the private threadGroup variable of via the ctx variable in a JSR223 Sampler/Post-/Pre-Processor by ctx.threadGroup.groupNumber It's probably not a good idea to rely on this, since it it

Re: Facing response assertion issue.

2022-07-09 Thread Felix Schumacher
schrieb Rushabh Doshi: Understood. From next time it will not happen. Sorry for inconvenience. Rushabh From: Felix Schumacher Sent: Friday, July 8, 2022 7:06 PM To:user@jmeter.apache.org Subject: Re: Facing response assertion issue. I have to admit, that I don't

Re: Facing response assertion issue.

2022-07-08 Thread Felix Schumacher
I have to admit, that I don't understand, what you really want. What CSV file? You didn't explain, where it comes from or how you included it in your test plan. Maybe it helps, if you post a minimal test plan, that shows, what you want to do. You can use a JSR 223 Sampler to generate a body

Re: How to save test fragment properly

2022-07-08 Thread Felix Schumacher
Can you provide a minimal sample without third party plugins? Thanks  Felix Am 07.07.22 um 18:35 schrieb Tong Sun: Hi, On Sun, Apr 11, 2021 at 4:27 PM Tong Sun wrote: On Tue, Nov 24, 2020 at 5:03 PM Tong Sun wrote: This is my first post here, and I don't know the policy on attaching

Re: Jmeter TCP script issue - Hex-encoded binary string contains an invalid hex digit

2022-06-09 Thread Felix Schumacher
roovy (JSR223) Post Processor will store the decoded result as a byte array inside the variable named "decoded". Felix Regards, Nuwan *From:* Felix Schumacher *Sent:* Wednesday, June 8, 2022 1:15 AM *To:* user@jmeter.apache.org *Subject:* Re: Jmeter TCP script issue - Hex-encoded bina

Re: JMeter 5.5

2022-06-08 Thread Felix Schumacher
It seems, that there are all remaining tasks done for a next RC round of JMeter 5.5. What do you think? Felix Am 03.06.22 um 12:46 schrieb Felix Schumacher: Hi Philippe, I meant https://github.com/apache/jmeter/pull/712 where Vladimir uses kotlin coroutines to have finer grained updates

Re: Jmeter TCP script issue - Hex-encoded binary string contains an invalid hex digit

2022-06-07 Thread Felix Schumacher
The attached text is not hex encoded. Have you encoded it yourself before pasting it into the text field? Felix Am 07.06.22 um 22:42 schrieb Nuwan Galkissa Mudalige: Hi Dmitri/Team, We want to use TCP sampler for testing. “Binary or LengthPrefixedBinary” TCPClientImpl work as a TCPClient

Re: JMeter 5.5

2022-06-03 Thread Felix Schumacher
for providing the information and thank you for continuing to work on JMeter. Alex. From: Felix Schumacher Sent: Wednesday, June 1, 2022 7:46 AM To:user@jmeter.apache.org Subject: Re: JMeter 5.5 The last RC was cancelled due to a minor issue and we have one small fix

Re: JMeter 5.5

2022-06-01 Thread Felix Schumacher
The last RC was cancelled due to a minor issue and we have one small fix waiting to be reviewed, before we start the next RC (which should not take too long (famous last words), though I happen to have rather few spare time at the moment). Felix Am 31.05.22 um 18:01 schrieb Plotkin, Alex -

Re: JMeter 5.4.3 unable to open jmx created in 5.2.1

2022-04-25 Thread Felix Schumacher
Am 25.04.22 um 14:06 schrieb Stuart Kenworthy: Seem to have identified the issue, but not sure why it is so. When I say a clean installation, I did have to add a custom jar in there for authentication purposes. This jar seems to be quietly causing issues with the JMeter installation, I have

Re: JMeter 5.4.3 unable to open jmx created in 5.2.1

2022-04-25 Thread Felix Schumacher
Am 25.04.22 um 15:24 schrieb Stuart Kenworthy: This was the other way around, not a missing plugin, but a custom binary causing a conflict. The custom jar we use to create tokens for our requests seems to be creating a conflict somewhere. I could not even open an empty JMX with the jar in

Re: JMeter 5.4.3 unable to open jmx created in 5.2.1

2022-04-25 Thread Felix Schumacher
Am 25.04.22 um 15:32 schrieb Tong Sun: Interesting. How come it could happen? I mean, when a script I'm opening is using a plug-in that wasn't yet installed, JMeter would ask me whether to install it, then install all the missing components for me. It is not like that for you Steve? That

Re: JMeter 5.4.3 unable to open jmx created in 5.2.1

2022-04-25 Thread Felix Schumacher
Am 25.04.22 um 13:36 schrieb Stuart Kenworthy: I am currently going through an upgrade of our JMeter instances from 5.2.1 to 5.4.3. Most of our existing scripts were generated in JMeter 5.2.1, and all have been modified in such so they are all compliant with 5.2.1. When I try to open any

Re: Download embedded resources

2022-04-16 Thread Felix Schumacher
Hello Frederic, apart from Dimitri's answer, another possible solution requires a bit of coding from yourself. You can replace the component, that identifies the embedded resources. Have a look at https://jmeter.apache.org/usermanual/component_reference.html#HTTP_Request The JMeter

Re: neo4j queries not recording query results

2022-03-07 Thread Felix Schumacher
Am 07.03.22 um 19:16 schrieb Stephen Nelson: On Mon, Mar 7, 2022 at 5:58 PM Felix Schumacher < felix.schumac...@internetallee.de> wrote: When I test the sampler using a docker container with a neo4j database like docker run --name neo4j -p7474:7474 -p7687:7687 --env NEO4J_AUTH=neo4

Re: neo4j queries not recording query results

2022-03-07 Thread Felix Schumacher
Am 07.03.22 um 18:50 schrieb Felix Schumacher: Am 07.03.22 um 18:45 schrieb Stephen Nelson: On Mon, Mar 7, 2022 at 5:32 PM Felix Schumacher < felix.schumac...@internetallee.de> wrote: Do you get more information when the exception is logged? Felix Dear Felix, Thanks for your

Re: neo4j queries not recording query results

2022-03-07 Thread Felix Schumacher
Am 07.03.22 um 18:45 schrieb Stephen Nelson: On Mon, Mar 7, 2022 at 5:32 PM Felix Schumacher < felix.schumac...@internetallee.de> wrote: Do you get more information when the exception is logged? Felix Dear Felix, Thanks for your reply. Unless I'm missing something I'm not seei

Re: neo4j queries not recording query results

2022-03-07 Thread Felix Schumacher
Do you get more information when the exception is logged? Felix Am 07.03.22 um 17:34 schrieb Stephen Nelson: I'm using jmeter to directly test neo4j queries but notice that when I try to record the query results I get an error message: Cannot access records on this result any more as the

Re: Run value for single parameter of HTTP Request

2022-02-22 Thread Felix Schumacher
Try with two threads instead of two loop-iterations. (or even better give us a minimal test plan) Felix Am 22.02.22 um 13:35 schrieb Smruti Koyande: Hi, I trying to run multiple parameter values for one single parameter. I added Pre-processor User Parameter. but it took only user 1 value.

Re: problems getting test to start while using REMOTE TESTING

2022-02-21 Thread Felix Schumacher
Hi Krister, it is not clear to me, how you configured your setup and how you started it. Can you post your command lines, that you used to start the test (or did you start it through the UI)? Can you post the (possibly masked) settings on the controller and the worker nodes, that you

Re: Response Assertion: extended regex ignore case syntax not working as documented

2022-02-18 Thread Felix Schumacher
Hi Philippe, I told Hartmut to take the discussion on list, as I think it has a wider audience and changing the implementation could introduce a changed behaviour in test plans. I hadn't thought of Bug 57672, but remembered an older discussion on (dev?) mailing list, where the possible

Re: Big File Upload to AEM Cloud

2022-01-30 Thread Felix Schumacher
Hi Nuwan, I have no experience with AEM Cloud, so I might not be able to help you, but looking at https://medium.com/adobetech/introduction-to-aem-as-a-cloud-service-asset-upload-http-api-fc560ffd7221 it seems, that the description is probably for the same use case, as yours. Sadly, the

Re: Log 4j version 2.17.1

2022-01-26 Thread Felix Schumacher
As the CVE score for 2.17.0 isn't that severe and the default config from JMeter should not be affected from it, we haven't done another minor release. You have a few options to mitigate this yourself. a) Replace the log4j2 components with newer ones (2.17.1 for example) b) Use a nightly build,

Re: Aggregate Graph is not display

2022-01-05 Thread Felix Schumacher
back on the bug issue, if the bug is gone for you. Felix Am 05.01.22 um 16:14 schrieb Felix Schumacher: > Well, don't bother, I will open it myself :) > > Am 05.01.22 um 15:38 schrieb Felix Schumacher: >> Ok, this is a bug. >> >> Could you open a bug report? >&g

Re: Aggregate Graph is not display

2022-01-05 Thread Felix Schumacher
Well, don't bother, I will open it myself :) Am 05.01.22 um 15:38 schrieb Felix Schumacher: > Ok, this is a bug. > > Could you open a bug report? > > This seems to be introduced by commit > db768c0e6fbffce8b8a1c64c867e47682a54866c in AxisGraph. > > I am not sure, why the c

Re: Aggregate Graph is not display

2022-01-05 Thread Felix Schumacher
Koyande: > Hi, > > I am using Java 8 and Jmeter 5.4.2 > No error is showing. > > > Thanks and Regards, > Smruti Koyande > > > > On Wed, Jan 5, 2022 at 5:37 PM Felix Schumacher < > felix.schumac...@internetallee.de> wrote: > >> Are there any erro

Re: Aggregate Graph is not display

2022-01-05 Thread Felix Schumacher
Are there any error messages in the jmeter.log file and/or error console? What version of Java are you using? Felix Am 5. Januar 2022 09:48:18 MEZ schrieb Smruti Koyande : >Hii, > >As per your suggestion, I have run the same test plan in 5.4.2 version. but >again getting a blank graph. > >PFA.

Re: Getting issue while sending the API request in 8443 port

2021-12-02 Thread Felix Schumacher
It might be, that the server has some built-in measures, that is closing an connection from a non-well behaved client. Non-well behaved might be   * wrong client-ip range   * wrong/missing user-agent header   * wrong/missing content-type header Take a look at the headers postman is sending and

Re: Implementing Apply to scoping rules to JSR223 PostProcessor, JSR223 Assertion and JSR223 Listener elements

2021-11-25 Thread Felix Schumacher
Hi Nikola, currently those elements are not scopeable, as they are not inheriting from the "correct" base class. I think it would be possible to correct that by adding a new interface AbstractScopedTestElement/Assertion and using the new interface to decide, if an element is scopeable. Best to

Re: JavaScript in JSR223 Post Processor

2021-11-14 Thread Felix Schumacher
Am 14.11.21 um 12:17 schrieb Vladimir Sitnikov: >> Sadly the nashorn jars are Java 11+. > The default JavaScript engine is present till Java 14, > so I just thought we could use "in-JDK Nashorn" for Java 8..14, and the > external one in 15+. > I hope nashorn-core does not force us to use module

Re: JavaScript in JSR223 Post Processor

2021-11-14 Thread Felix Schumacher
Am 13.11.21 um 20:17 schrieb Vladimir Sitnikov: > Felix>I am preparing a patch to update the Mozilla Rhino implementation in > Felix>JMeter to the current one (1.7.13) > > An alternative option is to bundle https://github.com/openjdk/nashorn > The jar is 2.5 MiB: >

Re: Query regarding Complex select query with Joins

2021-09-30 Thread Felix Schumacher
n "1.8.0_211" > OS - Windows 10 , > > Attaching the test plan here with for your reference : > > Thanks and Regards > Roopa > > -Original Message- > From: Felix Schumacher > Sent: Wednesday, September 22, 2021 7:08 PM > To: user@jmeter.apache.

Re: Requests summary is blank in JMeter HTML dashboard report.

2021-09-24 Thread Felix Schumacher
Am 23.09.2021 22:03, schrieb Felix Schumacher: Thanks, got it. It seems, that the problem comes from the column responseMessage containing a long text surrounded with quotes. When I replace it with the short text SOMETHING, a better report will be produced. Please open a bug, so that it can

Re: Query regarding Complex select query with Joins

2021-09-22 Thread Felix Schumacher
Am 22.09.21 um 12:52 schrieb Roopa Ramanathan: > HI , > > As part of our performance testing we are trying to run complex select query > with joins > > When we run the query with our application we are getting result where as > when the same query is run with Jmeter we are only getting the

Re: Download url broken

2021-09-22 Thread Felix Schumacher
Download should work again. Felix Am 22. September 2021 09:38:53 MESZ schrieb Felix Schumacher : > > >Am 22. September 2021 08:04:37 MESZ schrieb Philippe Mouawad >: >>Hello, >>It looks like download url is broken: >> >>- https://jmeter.apache.org/downloa

Re: Download url broken

2021-09-22 Thread Felix Schumacher
Am 22. September 2021 08:04:37 MESZ schrieb Philippe Mouawad : >Hello, >It looks like download url is broken: > >- https://jmeter.apache.org/download_jmeter.cgi Thanks for notifying. Infra knows about this (the Tomcat project notified them) and are looking into solving it. Regards Felix

Re: Ajax session timeout in JMeter

2021-09-16 Thread Felix Schumacher
Am 15.09.21 um 20:39 schrieb Troy Conner: > this is the message I'm seeing The list tends to strip of attachments. Your image has not made it through. Either try to resend it with another method/type, post a link to some online image, or paste the information as text. Felix > > > > > On Wed,

Re: Issues for a Beginner Developer

2021-09-15 Thread Felix Schumacher
Hi Niranjan, thanks for your interest in contributing to JMeter. There are many ways, you can contribute to JMeter. * You can try to answer questions that are posted on the users mailing list (or the dev mailing list, of course) * You can have a look in the bug tracker and look for open tickets

Re: Ajax session timeout in JMeter

2021-09-15 Thread Felix Schumacher
Am 15.09.21 um 14:09 schrieb Deepak Goel: > This looks more like a server/application issue rather than Jmeter. I think it is about the usage of JMeter and thus well suited for a question to user@ :) Felix > > On Wed, 15 Sep 2021, 13:09 Troy Conner, wrote: > >> I'm having trouble with AJAX

Re: Ajax session timeout in JMeter

2021-09-15 Thread Felix Schumacher
Am 15.09.21 um 16:40 schrieb Troy Conner: > From what I'm reading JMeter can't simulate AJAX requests (see link below). > However, there's a workaround. Most of what I've been reading is from years > ago. Unless, later versions of jmeter can run ajax? > >

Re: Response code:408

2021-09-13 Thread Felix Schumacher
ons) > > We need to get back to the initial load with all processes. > > I will reinforce with the SAP systems administration team to validate > server-side connections. > +1 Can you show us the request and response with such a 408 error? Felix > Thanks > > Franck > >

Re: GUI loads on each cmd line run

2021-09-13 Thread Felix Schumacher
Am 13.09.21 um 17:35 schrieb HULBERT Jenny: > > Hi > >   > > I am wondering if you could help with an issue I’ve been seeing. The > issue is that whenever I run a JMeter test from the command line the > GUI loads also. I don’t want the GUI to load each time, it’s > particularly annoying. I

Re: Response code:408

2021-09-11 Thread Felix Schumacher
Am 09.09.21 um 11:38 schrieb Franck Cruz: > Hello guys, > > I'm running JMeter to generate load on access to the SAP webclient > running some processes. > > Processes run correctly in the first few minutes but meanwhile > "Response code:408" starts to appear. > > This error only happens when I

Re: FW: Have JMeter Prepare SQL ONLY once and Execute Multiple times

2021-08-21 Thread Felix Schumacher
uest like you suggested and have this added > into the JMeter GUI. > > Jeff > > -Original Message- > From: Felix Schumacher > Sent: Wednesday, August 18, 2021 9:44 AM > To: Jeff Lutzow > Subject: Re: FW: Have JMeter Prepare SQL ONLY once and Execute Multiple times &

Re: Sharing the JDBC Connection between all the threads

2021-08-18 Thread Felix Schumacher
Am 17.08.21 um 21:15 schrieb Tong Sun: > On Tue, Aug 17, 2021 at 5:06 AM Felix Schumacher < > felix.schumac...@internetallee.de> wrote: > >> Do you want to share the connections over all the threads? (This is not >> the default in JMeter. Every thread/user ha

Re: Have JMeter Prepare SQL ONLY once and Execute Multiple times

2021-08-17 Thread Felix Schumacher
Am 27.07.21 um 20:25 schrieb Jeff Lutzow: > Is there a way to accomplish the above?Everything I have tried I still > see JMeter “Prepare” the SQL statement every time when using the JDBC driver > to connect to IBM Data Virtualization Manager. > > I would like to run a test where it runs the

Re: problem with jmeter & session id's

2021-08-12 Thread Felix Schumacher
Am 12.08.21 um 05:23 schrieb Troy Conner: > Also, the session id is contained in the Request/Request Headers. Do > you think that's right? That depends on your server implementation. (I think you meant Request/Response) The Response header is filled by the servers answer to your request. The

Re: problem with jmeter & session id's

2021-08-12 Thread Felix Schumacher
Am 12.08.21 um 05:20 schrieb Troy Conner: > when i put p=2000:24\:([^:]+) into the reg exp extractor the session > id is part of the response data/response body for the debugger. Does > this mean it's successfully extracting the session id? Below is the > http request. Is this where I put the

Re: SSL Session IP Persitence - Refresh ID per iteration

2021-08-09 Thread Felix Schumacher
Am 27.07.21 um 14:55 schrieb Lynch Kieran: > Hi all, > > Currently have a project that's using ssl passthrough & a client IP > persistence profile - obviously not great from a performance test > standpoint. > > I've recommended this is switched to SSL session ID persistence with > the plan to use

Re: java lang out of memory error heap space

2021-07-02 Thread Felix Schumacher
Am 02.07.21 um 18:10 schrieb Deepak Chaudhari: > Hi, > > I'm executing al load test with 100 users using JMeter and after 5 minutes > getting below error: > java lang out of memory error heap space > > I tried to increase the heap space (Xms1g -Xmx8g) > Also increased JVM space (JVM_ARGS="-Xms1g

Re: jmeter, windows authentication and script recording don't work

2021-06-25 Thread Felix Schumacher
Am 24.06.21 um 22:40 schrieb Hector Colina: > Hi. > > I'm triying to create a recording from our internal page developping using > .net > > If we use bzm - Arrivals Thread Group component we can do some load > test without problems, using HTTP Authorization Manager and basic > authentication

Re: Jmeter - MySQL Cluster

2021-06-07 Thread Felix Schumacher
Am 07.06.21 um 12:17 schrieb Deepak Goel: > Hello > > Thank You for your response. > > Something is wrong with my setup. The test is not working. It just does not > execute and there is nothing in the logs. My configuration looks something > like this: > > Database URL ---

Re: Wrong 90th and 95th percentile values in JMeter HTML report

2021-06-03 Thread Felix Schumacher
unk/ Yes, the property can be set via user.properties. Felix > > On Thu, Jun 3, 2021 at 11:14 PM Felix Schumacher > <mailto:felix.schumac...@internetallee.de>> wrote: > > You might find > https://bz.apache.org/bugzilla/show_bug.cgi?id=65353 > <https://bz

Re: Wrong 90th and 95th percentile values in JMeter HTML report

2021-06-03 Thread Felix Schumacher
Why is there so much difference?" > If there is any way with which we can generate almost similar > aggregate and HTML reports? > > On Thu, Jun 3, 2021 at 9:00 PM Felix Schumacher > <mailto:felix.schumac...@internetallee.de>> wrote: > > Without the actual data it is im

Re: Wrong 90th and 95th percentile values in JMeter HTML report

2021-06-03 Thread Felix Schumacher
Without the actual data it is impossible to say, if the reports are wrong, or if they follow different ways to calculate a percentile. The problem here is, that the two reports are using different algorithms to calculate the percentiles. We are working with discrete numbers and here a percentile

Re: help the nub.

2021-06-03 Thread Felix Schumacher
Am 02.06.21 um 19:31 schrieb Valdes, Allen: > Hello all. > > I am trying to start using Jmeter but it is not making it easy. I need to > stress load a Sybase DB server for work and I keep getting this error > > Cannot create PoolableConnectionFactory (Login failed) There can be a lot of reasons

Re: Comparison between navigation times registered by JMeter and other tools

2021-05-27 Thread Felix Schumacher
in > transaction : 16, number of failing samples : 0",true,,0,1,0,SPXMIW3825,0 > > As you can see, the 2_MFP_Login transaction starts with a time of 8.8 > seconds, then goes down to 6.2-6.3 in the second and third iteration. > I tried to switch the implementation from "Java

Re: Comparison between navigation times registered by JMeter and other tools

2021-05-26 Thread Felix Schumacher
It seems to have removed yours, too. Can you describe the test elements, that you are using? What is inside the transaction that takes eight seconds? Felix > Thanks > > > Il giorno mer 26 mag 2021 alle ore 21:10 Felix Schumacher > <mailto:felix.schumac...@internetallee.de&g

Re: Comparison between navigation times registered by JMeter and other tools

2021-05-26 Thread Felix Schumacher
Am 26.05.21 um 21:00 schrieb Gabriele D'Antona: > Hello, > I'm a consultant working for a customer that wants to test JMeter as an > alternative to HP BSM (now owned by Microfocus). > > I registered one navigation that is (or at least shoudl be) identical to > the BSM one (same URLs, same

Re: [EXTERNAL] Re: Missing HTTP headers on Linux but not on Windows10

2021-05-15 Thread Felix Schumacher
aces, all samples worked successfully. I don't know, why windows works, when linux doesn't. Felix > > -Original Message- > From: Felix Schumacher > Sent: Friday, May 14, 2021 1:14 PM > To: user@jmeter.apache.org > Subject: [EXTERNAL] Re: Missing HTTP headers on Linux

Re: Missing HTTP headers on Linux but not on Windows10

2021-05-14 Thread Felix Schumacher
Hi Lewis, can you post a minimal example plan, that exhibits the described behaviour? I created one for myself with the given curl command as starting point and can't reproduce the problem under ubuntu using a current snapshot of JMeter and Java 1.8. I don't think it should matter, but I would

Re: Getting error with JMeter 3.1 while opening jmx

2021-05-14 Thread Felix Schumacher
schrieb A P : >@Felix I sent you. > >On Fri, May 14, 2021 at 3:06 PM Felix Schumacher < >felix.schumac...@internetallee.de> wrote: > >> The attachment has not come through. >> >> The mailing list tends to strip attachments out doesn't like. You >might >>

Re: Getting error with JMeter 3.1 while opening jmx

2021-05-14 Thread Felix Schumacher
The attachment has not come through. The mailing list tends to strip attachments out doesn't like. You might send it to me directly. Felix Am 13. Mai 2021 22:37:20 MESZ schrieb A P : >Attaching jmeter.log > >On Fri, May 14, 2021 at 1:53 AM Felix Schumacher < >felix.schumac...@i

Re: Getting error with JMeter 3.1 while opening jmx

2021-05-13 Thread Felix Schumacher
Can you look into the log file jmeter.log and post any error you find there? Felix Am 13. Mai 2021 20:34:48 MESZ schrieb A P : >I just downloaded JMeter 3.1 and trying to open a jmx which was sent by >my >colleague. Its showing me below error: > >[image: image.png] > >Could someone please help

Re: grpc request error -- JMeter 4.0

2021-04-28 Thread Felix Schumacher
the server or better the public cert of the CA that signed the servers public key) To get back to you original problem. You showed an error (500, Exception: io.grpc.StatusRuntimeException: UNKNOWN) that came from the server. Did you have a look at the server logs to find out more about the problem the serve

Re: grpc request error -- JMeter 4.0

2021-04-28 Thread Felix Schumacher
JMeter (especially the HTTPClient 4 implementation). Make sure, that it works with your sampler (by asking the third party plugin developer?). Regards  Felix > > > Thanks, > Prateek > > On Sat, Apr 24, 2021 at 4:40 PM Felix Schumacher > <mailto:felix.schumac...@int

Re: Problem: Script not stopping automatically[require force stop]

2021-04-24 Thread Felix Schumacher
Am 21.04.21 um 09:12 schrieb Hemraj Upadhyay: > I have recorded a script which involves Login, navigate to some menu, and > then submit a form[I am also logging out, but that is optional] > > I can see result in tree for recorded script.[in which token related things > have failed which I can

Re: SMTP Handler - get queue id

2021-04-12 Thread Felix Schumacher
:56 schrieb Oren Nudelman: > Patch was blocked by mail security, can you share link to download? > > -Original Message- > From: Felix Schumacher [mailto:felix.schumac...@internetallee.de] > Sent: Sunday, 11 April 2021 16:55 > To: user@jmeter.apache.org > Subject: Re: SMT

Re: SMTP Handler - get queue id

2021-04-11 Thread Felix Schumacher
bject I ca work with. > > Earlier on this thread @Shay Ginsburg suggested parsing the jmeter debug and > parse the log file (where indeed this text exists) but it's a way more work > to parse large log file instead of a returned object. > > -----Original Message- > From: Fe

Re: Starting Jmeter without the logo

2021-04-11 Thread Felix Schumacher
en rarely and it didn't annoy me, yet. But if others think this is useful, I might be persuaded to add such a config. Felix > > > > > > > > On Sat, Apr 10, 2021 at 9:03 PM Felix Schumacher > <mailto:felix.schumac...@internetallee.de>> wrote: > > > A

Re: Starting Jmeter without the logo

2021-04-11 Thread Felix Schumacher
Am 10.04.21 um 22:39 schrieb Tong Sun: > On Sat, Apr 10, 2021 at 2:03 PM Felix Schumacher wrote: > >> https://bz.apache.org/bugzilla/show_bug.cgi?id=65232 >> >> A fix has been applied to trunk. Are you able to test it and report, whether >> it fixes your (

Re: SMTP Handler - get queue id

2021-04-11 Thread Felix Schumacher
ation seems to be a tricky thing and I would not suggest doing it without more information. Felix > > -Original Message- > From: Felix Schumacher [mailto:felix.schumac...@internetallee.de] > Sent: Thursday, 8 April 2021 13:44 > To: user@jmeter.apache.org > Subject: Re: SM

Re: Starting Jmeter without the logo

2021-04-10 Thread Felix Schumacher
Am 10.04.21 um 18:52 schrieb Tong Sun: > > > On Sat, Apr 10, 2021 at 12:30 PM Felix Schumacher > <mailto:felix.schumac...@internetallee.de>> wrote: > > > > > > Am 10.04.21 um 18:21 schrieb Tong Sun: > > > On Sat, Apr 10, 2021 at 6:02 AM Felix Schu

Re: Starting Jmeter without the logo

2021-04-10 Thread Felix Schumacher
Am 10.04.21 um 18:21 schrieb Tong Sun: > On Sat, Apr 10, 2021 at 6:02 AM Felix Schumacher < > felix.schumac...@internetallee.de> wrote: >> >> Am 10.04.21 um 09:23 schrieb Adrian Sp: >>> Hi, >>> >>> It's an open source project. Just check the

Re: Starting Jmeter without the logo

2021-04-10 Thread Felix Schumacher
Am 10.04.21 um 09:23 schrieb Adrian Sp: > Hi, > > It's an open source project. Just check the code and see how it works > under the hood if you feel comfortable with this. Apart from the sources there are other places, where you might be able to find the good stuff, bugzilla for example ;)

Re: SV: Jmeter not substituting variable in CSV Data Set Config

2021-04-08 Thread Felix Schumacher
Am 07.04.21 um 15:48 schrieb Krister Nilsson: > Hi Philippe! > > No worries! I guess we have to live with not everyone using the same tone in > a society like this. glinius helped me with what was wrong at least, even > though it is a little tricky to solve my use case under the existing >

Re: SMTP Handler - get queue id

2021-04-08 Thread Felix Schumacher
Am 07.04.21 um 15:38 schrieb Oren Nudelman: > Hi , > > I am trying to get back the queue id in the SMTP response when sending email > using SMTP handler. > I can see it in the logs when enabling debug but could not find any way to > retrieve it during execution. With "can see it in the logs",

Re: SV: SV: Response assertion seems to not always set JMeterThread.last_sample_ok correctly

2021-04-06 Thread Felix Schumacher
Am 06.04.21 um 16:27 schrieb Krister Nilsson: > -Ursprungligt meddelande- > Från: Felix Schumacher > Skickat: den 6 april 2021 16:16 > Till: user@jmeter.apache.org > Ämne: Re: SV: Response assertion seems to not always set > JMeterThread.last_sample_ok correctly >

Re: SV: Response assertion seems to not always set JMeterThread.last_sample_ok correctly

2021-04-06 Thread Felix Schumacher
here the loaded script is and relative to JMETER_HOME). Felix > > > BR > > /Krister > > > > -Ursprungligt meddelande- > Från: Felix Schumacher > Skickat: den 6 april 2021 15:58 > Till: user@jmeter.apache.org > Ämne: Re: SV: Response assertion see

Re: SV: Response assertion seems to not always set JMeterThread.last_sample_ok correctly

2021-04-06 Thread Felix Schumacher
Am 06.04.21 um 12:16 schrieb Krister Nilsson: > Ok! Thanks! > > > > The mental fatigue was most likely at my end since I thought I knew what you > were saying without really listening. Changing the JSR223 Postprocessors to > JSR223 Listeners seems to have solved my problem. Sorry for not

  1   2   3   4   5   6   >