Remove duplicate prometheus metrics

This commit is contained in:
Jimmi Dyson 2016-07-20 16:00:21 +01:00
parent ecebdb5707
commit 21231e1e83
No known key found for this signature in database
GPG Key ID: 978CD4AF4C1E87F5

View File

@ -22,7 +22,6 @@ import (
"flag"
"fmt"
"net/http"
"regexp"
"time"
"github.com/golang/glog"
@ -109,18 +108,7 @@ func (cc *cadvisorClient) exportHTTP(port uint) error {
return err
}
re := regexp.MustCompile(`^k8s_(?P<kubernetes_container_name>[^_\.]+)[^_]+_(?P<kubernetes_pod_name>[^_]+)_(?P<kubernetes_namespace>[^_]+)`)
reCaptureNames := re.SubexpNames()
cadvisorhttp.RegisterPrometheusHandler(mux, cc, "/metrics", func(name string) map[string]string {
extraLabels := map[string]string{}
matches := re.FindStringSubmatch(name)
for i, match := range matches {
if len(reCaptureNames[i]) > 0 {
extraLabels[re.SubexpNames()[i]] = match
}
}
return extraLabels
})
cadvisorhttp.RegisterPrometheusHandler(mux, cc, "/metrics", nil)
// Only start the http server if port > 0
if port > 0 {