type go.opencensus.io/tag.Tag

9 uses

	go.opencensus.io/tag (current package)
		map.go#L26: type Tag struct {

	go.opencensus.io/stats/view
		collector.go#L74: func decodeTags(buf []byte, keys []tag.Key) []tag.Tag {
		collector.go#L76: 	var tags []tag.Tag
		collector.go#L80: 			tags = append(tags, tag.Tag{Key: k, Value: string(v)})
		view.go#L174: 	Tags []tag.Tag

	contrib.go.opencensus.io/exporter/stackdriver
		stats.go#L153: func (e *statsExporter) getMonitoredResource(v *view.View, tags []tag.Tag) ([]tag.Tag, *monitoredrespb.MonitoredResource) {
		stats.go#L239: 			tags, resource := e.getMonitoredResource(vd.View, append([]tag.Tag(nil), row.Tags...))
		stats.go#L567: func newLabels(defaults map[string]labelValue, tags []tag.Tag) map[string]string {