func()

in spectator/registry.go [94:102]


func (r *spectatordRegistry) NewId(name string, tags map[string]string) *meter.Id {
	newId := meter.NewId(name, tags)

	if r.config.extraCommonTags != nil && len(r.config.extraCommonTags) > 0 {
		newId = newId.WithTags(r.config.extraCommonTags)
	}

	return newId
}