简体   繁体   中英

Unable to generate 100 users records in csv/jtl file in jmeter

I tried on my local system then it generates but only generates up to 69 users records and I gave 1000 users in non GUI mode.

  1. May I know what would be the issue of generating 68 users?

  2. I have 2400 users list and want to run script and save the output. What system configuration do I require? And how do we analyze system configuration per users?

  3. I am unable to find the jmeter log file.

I am using this below where I have given given 1000 users to hit the server.

"jmeter -Jthreads=1000 -n -t Anand.jmx -l Anand1000-1.csv "

  1. We don't know, check jmeter.log file , Thread Group settings, CSV Data Set Config setup and your application log

  2. We don't know as it depends on the nature of your test, size of requests/responses, number of hits per second, presence of post-processors , assertions , etc.

  3. jmeter.log file normally is in the "bin" folder of your JMeter installation. If you're launching JMeter via ie desktop shortcut - it will be in the current "working" folder. If you're still unable to find it - locate the following line in log4j2.xml file (lives in "bin" folder of your JMeter installation) :

     <File name="jmeter-log" fileName="${sys:jmeter.logfile:-jmeter.log}" append="false">

    and change ${sys:jmeter.logfile:-jmeter.log} to some hard-coded path, ie c:\temp\jmeter.log . JMeter restart will be required to pick up the change.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM