mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 07:27:43 +00:00
update reporting rate for API calls
This commit is contained in:
parent
8fc0603735
commit
6edb220d84
1 changed files with 3 additions and 3 deletions
|
@ -197,10 +197,10 @@ func (a *api) loggingMiddleware(next http.Handler) http.Handler {
|
|||
}
|
||||
|
||||
tags := []string{fmt.Sprintf("status:%d", lrw.statusCode)}
|
||||
_ = a.statsd.Histogram("api.latency", float64(duration), nil, 0.1)
|
||||
_ = a.statsd.Incr("api.calls", tags, 0.1)
|
||||
_ = a.statsd.Histogram("api.latency", float64(duration), nil, 1.0)
|
||||
_ = a.statsd.Incr("api.calls", tags, 1.0)
|
||||
if lrw.statusCode >= 500 {
|
||||
_ = a.statsd.Incr("api.errors", nil, 0.1)
|
||||
_ = a.statsd.Incr("api.errors", nil, 1.0)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue