From e1b65779ce9f0521e8f049bdea38f8802f3da3fd Mon Sep 17 00:00:00 2001 From: tcnksm Date: Sun, 29 Jan 2017 14:38:01 +0900 Subject: [PATCH] Documentation --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 66bf9e8..70da891 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ -# go-httpstat +# go-httpstat [![Go Documentation](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)][godocs] [![Build Status](http://img.shields.io/travis/tcnksm/go-httpstat.svg?style=flat-square)][travis] [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)][license] -[![Build Status](http://img.shields.io/travis/tcnksm/go-httpstat.svg?style=flat-square)][travis] -[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)][license] -[![Go Documentation](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)][godocs] - -[travis]: https://travis-ci.org/tcnksm/go-httpstat -[license]: https://github.com/tcnksm/go-httpstat/blob/master/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.