...

Source file src/github.com/docker/distribution/metrics/prometheus.go

Documentation: github.com/docker/distribution/metrics

     1  package metrics
     2  
     3  import "github.com/docker/go-metrics"
     4  
     5  const (
     6  	// NamespacePrefix is the namespace of prometheus metrics
     7  	NamespacePrefix = "registry"
     8  )
     9  
    10  var (
    11  	// StorageNamespace is the prometheus namespace of blob/cache related operations
    12  	StorageNamespace = metrics.NewNamespace(NamespacePrefix, "storage", nil)
    13  )
    14  

View as plain text