mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +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 {
|
func NewClient(id, secret string, statsd *statsd.Client) *Client {
|
||||||
tracer := &httptrace.ClientTrace{
|
tracer := &httptrace.ClientTrace{
|
||||||
GotConn: func(info httptrace.GotConnInfo) {
|
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.Incr("reddit.api.connections.reused", []string{}, 0.1)
|
||||||
|
statsd.Histogram("reddit.api.connections.idle_time", idleTime, []string{}, 0.1)
|
||||||
} else {
|
} else {
|
||||||
statsd.Incr("reddit.api.connections.created", []string{}, 0.1)
|
statsd.Incr("reddit.api.connections.created", []string{}, 0.1)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue