Merge pull request #295 from jzelinskie/prom-errs

frontend/*: only record ClientErrors to Prometheus
This commit is contained in:
Jimmy Zelinskie
2017-02-17 11:54:41 -05:00
committed by GitHub
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -39,7 +39,11 @@ var promResponseDurationMilliseconds = prometheus.NewHistogramVec(
func recordResponseDuration(action string, af *bittorrent.AddressFamily, err error, duration time.Duration) {
var errString string
if err != nil {
errString = err.Error()
if _, ok := err.(bittorrent.ClientError); ok {
errString = err.Error()
} else {
errString = "internal error"
}
}
var afString string
+5 -1
View File
@@ -42,7 +42,11 @@ var promResponseDurationMilliseconds = prometheus.NewHistogramVec(
func recordResponseDuration(action string, af *bittorrent.AddressFamily, err error, duration time.Duration) {
var errString string
if err != nil {
errString = err.Error()
if _, ok := err.(bittorrent.ClientError); ok {
errString = err.Error()
} else {
errString = "internal error"
}
}
var afString string