github.com/prometheus/client_model/go.LabelPair.Name (field)

9 uses

	github.com/prometheus/client_model/go (current package)
		metrics.pb.go#L67: 	Name                 *string  `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
		metrics.pb.go#L99: 	if m != nil && m.Name != nil {
		metrics.pb.go#L100: 		return *m.Name

	github.com/prometheus/client_golang/prometheus
		desc.go#L152: 			Name:  proto.String(n),
		registry.go#L926: 			Name: proto.String(l),
		value.go#L155: 			Name:  proto.String(n),
		wrap.go#L167: 			Name:  proto.String(ln),
		wrap.go#L178: 		constLabels[*lp.Name] = *lp.Value

	github.com/prometheus/common/expfmt
		text_parse.go#L284: 	p.currentLabelPair = &dto.LabelPair{Name: proto.String(p.currentToken.String())}