Anybody knows how can I test the numbers of connections that transport is currently creating on the pool of the connections, it is clear that in the code I have put MaxIdleConnsPerHost: 5 like number maximum of connections on the pool and DisableKeepAlives: false like the option which let to reuse the connection but I do not sure about how Go is managed this topic and the documentation is not clear Source-code-transport.go , Documentation-net/http
Server is a example of a server that receive a XML and send the same XML like response with an attribute more.
Client is the code that has the configuration of the pool and send 100 request to server.