Merge pull request #4 from prometheus/usability/sundry

Run gofmt on corpus and include deprecation.
This commit is contained in:
juliusv 2013-02-18 07:34:00 -08:00
commit ed0a3bcbc3
4 changed files with 8 additions and 6 deletions

View File

@ -50,7 +50,6 @@ type container struct {
name string name string
} }
type registry struct { type registry struct {
mutex sync.RWMutex mutex sync.RWMutex
signatureContainers map[string]container signatureContainers map[string]container
@ -66,6 +65,9 @@ type Registry interface {
// Create a http.HandlerFunc that is tied to a Registry such that requests // Create a http.HandlerFunc that is tied to a Registry such that requests
// against it generate a representation of the housed metrics. // against it generate a representation of the housed metrics.
Handler() http.HandlerFunc Handler() http.HandlerFunc
// This is a legacy version of Handler and is deprecated. Please stop
// using.
YieldExporter() http.HandlerFunc
} }
// This builds a new metric registry. It is not needed in the majority of // This builds a new metric registry. It is not needed in the majority of