MCPcopy
hub / github.com/grafana/tempo / putSpansetAndSpans

Function putSpansetAndSpans

tempodb/encoding/vparquet3/block_traceql.go:754–763  ·  view source on GitHub ↗
(ss *traceql.Spanset)

Source from the content-addressed store, hash-verified

752}
753
754func putSpansetAndSpans(ss *traceql.Spanset) {
755 if ss != nil {
756 for _, s := range ss.Spans {
757 if span, ok := s.(*span); ok {
758 putSpan(span)
759 }
760 }
761 putSpanset(ss)
762 }
763}
764
765// Helper function to create an iterator, that abstracts away
766// context like file and rowgroups.

Callers

nothing calls this directly

Calls 2

putSpanFunction · 0.70
putSpansetFunction · 0.70

Tested by

no test coverage detected