go.opencensus.io/trace.SpanData.Attributes (field)

10 uses

	go.opencensus.io/trace (current package)
		export.go#L84: 	Attributes    map[string]interface{}
		trace.go#L300: 		sd.Attributes = s.lruAttributesToAttributeMap()

	go.opencensus.io/zpages
		tracez.go#L290: 	if len(s.Attributes) != 0 {
		tracez.go#L291: 		out = append(out, traceRow{Fields: [3]string{"", "", formatAttributes(s.Attributes)}})

	contrib.go.opencensus.io/exporter/stackdriver
		stackdriver.go#L453: 	newSD.Attributes = make(map[string]interface{})
		stackdriver.go#L455: 		newSD.Attributes[k] = v
		stackdriver.go#L457: 	for k, v := range sd.Attributes {
		stackdriver.go#L458: 		newSD.Attributes[k] = v
		trace_proto.go#L79: 	copyAttributes(&sp.Attributes, s.Attributes)

	golang.org/x/pkgsite/internal/dcensus
		debug.go#L46: 	dumpAttributes(&buf, s.Attributes)