Deepak N
Deepak N

Reputation: 1639

How can I get Jmeter info Logs while running distributed testing?

I want to run Jmeter distributed testing, I want Jmeter to write info logs on log file but in distributed mode it only provides us logs which is related to connection, it doesnot really gives the log of execution. How can I get the actual logs?? Thanks in advance.

Upvotes: 3

Views: 3254

Answers (1)

Dmitri T
Dmitri T

Reputation: 167992

The execution log is being written on slave side, if you run slave via jmeter-server.bat or jmeter-server you should see jmeter-server.log file in the folder where you launched slave instance from.

If you don't see the log file you can specify its name and location via -j command line argument like:

jmeter -s -j jmeter-server.log ......

More information:

Upvotes: 4

Related Questions