go.opencensus.io/trace.SpanContext.SpanID (field)

19 uses

	go.opencensus.io/trace (current package)
		trace.go#L104: 	SpanID       SpanID
		trace.go#L213: 	span.spanContext.SpanID = cfg.IDGenerator.NewSpanID()
		trace.go#L228: 			SpanID:          span.spanContext.SpanID,
		trace.go#L250: 		span.data.ParentSpanID = parent.SpanID
		trace.go#L526: 		return fmt.Sprintf("span %s", s.spanContext.SpanID)
		trace.go#L529: 	str := fmt.Sprintf("span %s %q", s.spanContext.SpanID, s.data.Name)

	go.opencensus.io/trace/propagation
		propagation.go#L64: 	copy(b[19:27], sc.SpanID[:])
		propagation.go#L86: 		copy(sc.SpanID[:], b[1:9])

	go.opencensus.io/plugin/ocgrpc
		trace_common.go#L79: 		span.AddLink(trace.Link{TraceID: parent.TraceID, SpanID: parent.SpanID, Type: trace.LinkTypeChild})

	go.opencensus.io/plugin/ochttp
		server.go#L126: 				SpanID:     sc.SpanID,

	go.opencensus.io/plugin/ochttp/propagation/b3
		b3.go#L60: 		SpanID:       sid,
		b3.go#L114: 	req.Header.Set(SpanIDHeader, hex.EncodeToString(sc.SpanID[:]))

	go.opencensus.io/zpages
		templates.go#L118: 		return template.HTML(fmt.Sprintf(`trace_id: <b style="color:%s">%s</b> span_id: %s parent_span_id: %s`, col, sc.TraceID, sc.SpanID, r.ParentSpanID))
		templates.go#L120: 	return template.HTML(fmt.Sprintf(`trace_id: <b style="color:%s">%s</b> span_id: %s`, col, sc.TraceID, sc.SpanID))
		tracez.go#L382: 			fmt.Fprintf(tw, "trace_id: %s span_id: %s", sc.TraceID, sc.SpanID)

	contrib.go.opencensus.io/exporter/stackdriver
		metrics.go#L514: 		SpanName: fmt.Sprintf("projects/%s/traces/%s/spans/%s", projectID, spanCtx.TraceID.String(), spanCtx.SpanID.String()),
		trace_proto.go#L53: 	spanIDString := s.SpanContext.SpanID.String()

	google.golang.org/api/transport/http/internal/propagation
		http.go#L67: 	binary.BigEndian.PutUint64(sc.SpanID[:], sid)
		http.go#L83: 	sid := binary.BigEndian.Uint64(sc.SpanID[:])