mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 07:27:43 +00:00
maybe measure idle time better
This commit is contained in:
parent
e56483dbb7
commit
8fb6adfae2
1 changed files with 3 additions and 1 deletions
|
@ -28,8 +28,10 @@ type Client struct {
|
|||
func NewClient(id, secret string, statsd *statsd.Client) *Client {
|
||||
tracer := &httptrace.ClientTrace{
|
||||
GotConn: func(info httptrace.GotConnInfo) {
|
||||
if info.Reused {
|
||||
if info.WasIdle {
|
||||
idleTime := float64(int64(info.IdleTime) / int64(time.Millisecond))
|
||||
statsd.Incr("reddit.api.connections.reused", []string{}, 0.1)
|
||||
statsd.Histogram("reddit.api.connections.idle_time", idleTime, []string{}, 0.1)
|
||||
} else {
|
||||
statsd.Incr("reddit.api.connections.created", []string{}, 0.1)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue