Update dependencies
This commit is contained in:
23
vendor/github.com/tcnksm/go-httpstat/README.md
generated
vendored
Normal file
23
vendor/github.com/tcnksm/go-httpstat/README.md
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# go-httpstat [][godocs] [][travis] [][license]
|
||||
|
||||
[godocs]: http://godoc.org/github.com/tcnksm/go-httpstat
|
||||
[travis]: https://travis-ci.org/tcnksm/go-httpstat
|
||||
[license]: /LICENSE
|
||||
|
||||
`go-httpstat` is a golang package to trace golang HTTP request latency (DNSLookup, TCP Connection and so on). Because it uses [`httptrace`](https://golang.org/pkg/net/http/httptrace/) internally, just creating `go-httpstat` powered `context` and giving it your `http.Request` kicks tracing (no big code modification is required). The original idea came from [`httpstat`](https://github.com/reorx/httpstat) command ( and Dave Cheney's [golang implementation](https://github.com/davecheney/httpstat)) 👏. This package now traces same latency infomation as them.
|
||||
|
||||
See usage and example on [GoDoc][godocs].
|
||||
|
||||
*NOTE*: Since [`httptrace`](https://golang.org/pkg/net/http/httptrace/) was introduced after go1.7, this package may not work with old HTTP client. Especially, if you don't use `net.DialContext` it can not trace DNS and connection.
|
||||
|
||||
## Install
|
||||
|
||||
Use `go get`,
|
||||
|
||||
```bash
|
||||
$ go get github.com/tcnksm/go-httpstat
|
||||
```
|
||||
|
||||
## Author
|
||||
|
||||
[Taichi Nakashima](https://github.com/tcnksm)
|
||||
Reference in New Issue
Block a user