github.com/rudderlabs/rudder-go-kit@v0.30.0/stats/metric/measurement.go (about)

     1  package metric
     2  
     3  // Measurement acts as a key in a Registry.
     4  type Measurement interface {
     5  	// GetName gets the name of the measurement
     6  	GetName() string
     7  	// GetTags gets the tags of the measurement
     8  	GetTags() map[string]string
     9  }