type github.com/prometheus/client_golang/prometheus.Registry

11 uses

	github.com/prometheus/client_golang/prometheus (current package)
		registry.go#L67: func NewRegistry() *Registry {
		registry.go#L68: 	return &Registry{
		registry.go#L85: func NewPedanticRegistry() *Registry {
		registry.go#L255: type Registry struct {
		registry.go#L265: func (r *Registry) Register(c Collector) error {
		registry.go#L360: func (r *Registry) Unregister(c Collector) bool {
		registry.go#L397: func (r *Registry) MustRegister(cs ...Collector) {
		registry.go#L406: func (r *Registry) Gather() ([]*dto.MetricFamily, error) {

	contrib.go.opencensus.io/exporter/prometheus
		prometheus.go#L46: 	Registry    *prometheus.Registry
		prometheus.go#L115: 	reg *prometheus.Registry
		prometheus.go#L135: func newCollector(opts Options, registrar *prometheus.Registry) *collector {