tag:blog.golang.org,2013:blog.golang.org 2016-10-04T11:00:00+00:00 tag:blog.golang.org,2013:blog.golang.org/http-tracing 2016-10-04T11:00:00+00:00 2016-10-04T11:00:00+00:00 Jaana Burcu Dogan In Go 1.7 we introduced HTTP tracing, a facility to gather fine-grained information throughout the lifecycle of an HTTP client request. Support for HTTP tracing is provided by the <a href="https://golang.org/pkg/net/http/httptrace/" target="_blank"><code>net/http/httptrace</code></a> package. The collected information can be used for debugging latency issues, service monitoring, writing adaptive systems, and more. <h4 id="TOC_1.">Introduction</h4> <p> In Go 1.7 we introduced HTTP tracing, a facility to gather fine-grained information throughout the lifecycle of an HTTP client request. Support for HTTP tracing is provided by the <a href="https://golang.org/pkg/net/http/httptra...