Update containerd to 129167132c.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu
2018-02-21 01:53:04 +00:00
parent 454f583d49
commit 45b6e75803
424 changed files with 59732 additions and 113 deletions

13
vendor/github.com/docker/go-metrics/handler.go generated vendored Normal file
View File

@@ -0,0 +1,13 @@
package metrics
import (
"net/http"
"github.com/prometheus/client_golang/prometheus"
)
// Handler returns the global http.Handler that provides the prometheus
// metrics format on GET requests
func Handler() http.Handler {
return prometheus.Handler()
}