Re: [go-nuts] How to properly set an http.Client limits and monitor connection pool

2019-03-12 Thread Javier
El lunes, 11 de marzo de 2019, 18:43:41 (UTC+1), Robert Engels escribió: > > You need to reuse the client http transport or you will run out of > connections at the os level due to them being in a closed wait state. > > > Hi Yes, I know. In fact, the part of the code where I am defining the tr

Re: [go-nuts] How to properly set an http.Client limits and monitor connection pool

2019-03-11 Thread Robert Engels
You need to reuse the client http transport or you will run out of connections at the os level due to them being in a closed wait state. > On Mar 11, 2019, at 4:56 AM, Javier wrote: > > Hi > > I am load testing a simple application that calls an echo service with a GET. > My application is te