github.com/google/pprof/profile.Sample.Label (field)

19 uses

	github.com/google/pprof/profile (current package)
		encode.go#L41: 		for k := range s.Label {
		encode.go#L46: 			vs := s.Label[k]
		encode.go#L324: 			s.Label = labels
		filter.go#L158: 		for lab := range s.Label {
		filter.go#L160: 				delete(s.Label, lab)
		merge.go#L156: 		Label:    make(map[string][]string, len(src.Label)),
		merge.go#L163: 	for k, v := range src.Label {
		merge.go#L166: 		s.Label[k] = vv
		merge.go#L200: 	labels := make([]string, 0, len(sample.Label))
		merge.go#L201: 	for k, v := range sample.Label {
		profile.go#L75: 	Label    map[string][]string
		profile.go#L637: 	if len(s.Label) > 0 {
		profile.go#L638: 		ss = append(ss, labelHeader+labelsToString(s.Label))
		profile.go#L683: 		if sample.Label == nil {
		profile.go#L684: 			sample.Label = map[string][]string{key: value}
		profile.go#L686: 			sample.Label[key] = value
		profile.go#L695: 		delete(sample.Label, key)
		profile.go#L701: 	for _, v := range s.Label[key] {