Hi Can anyone help me in understanding this issue and also quick resolution to it?
Thanks
usually the http debug trace log level will tell you what is wrong in the stdout file. you can enable it with 4 lines of code in your simulation file or maybe with a log4j.xml
Hi, I have tried getting the logs:
11:06:37.531 [DEBUG] o.a.n.c.NettyConnectListener - Trying to recover from failing to connect channel [id: 0xb48bd6e1, L:0.0.0.0/0.0.0.0:63265 ! R:XXXXX.XXX:443] with a retry value of true 11:06:37.531 [DEBUG] o.a.n.c.NettyConnectListener - Failed to recover from connect exception: java.nio.channels.ClosedChannelException with channel [id: 0xb48bd6e1, L:0.0.0.0/0.0.0.0:63265 ! R:test.XXXXX.XXXX:443] 11:06:37.531 [DEBUG] i.g.h.a.AsyncHandler - Request 'user_id=XXX@XXXX.com&easy_id=XXX945XX' failed for user 41 java.nio.channels.ClosedChannelException: null at io.nettyr.ssl.SslHandler.channelInactive(...)(Unknown Source) Wrapped by: java.net.ConnectException: https://XXX.XXX.XXX.co.jp:443 at org.asynchttpclient.netty.channel.NettyConnectListener.onFailure(NettyConnectListener.java:168) at org.asynchttpclient.netty.channel.NettyConnectListener$1.onFailure(NettyConnectListener.java:139) at org.asynchttpclient.netty.SimpleFutureListener.operationComplete(SimpleFutureListener.java:26) at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:512) at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:505) at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:484) at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:425) at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:122) at io.netty.handler.ssl.SslHandler.notifyHandshakeFailure(SslHandler.java:1488) at io.netty.handler.ssl.SslHandler.setHandshakeFailure(SslHandler.java:1478) at io.netty.handler.ssl.SslHandler.channelInactive(SslHandler.java:954) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:240) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:226) at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:219) at io.netty.channel.DefaultChannelPipeline$HeadContext.channelInactive(DefaultChannelPipeline.java:1299) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:240) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:226) at io.netty.channel.DefaultChannelPipeline.fireChannelInactive(DefaultChannelPipeline.java:903) at io.netty.channel.AbstractChannel$AbstractUnsafe$8.run(AbstractChannel.java:768) at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:367) atty.util.concurrent.SingleThreadEventExecutor.confirmShutdown(SingleThreadEventExecutor.java:671) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:474) at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:131) at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) at java.lang.Thread.run(Thread.java:748)
Could anyone please help me in understanding the issue here?
Thanks
Connection reset by peer means the connection was closed by the server when the client was trying to send a request.
A connect exception means the server refused to open a new TCP connection.
Note that you’re using Gatling 2 which has reached end of life and is no longer maintained. Please upgrade to Gatling 3.
Thanks Stéphane for the explanation, I will upgrade the gatling to 3.
Cheers to Gatling!!!