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

Function estimateLinksSize

tempodb/encoding/vparquet5/create.go:340–347  ·  view source on GitHub ↗
(links []Link)

Source from the content-addressed store, hash-verified

338}
339
340func estimateLinksSize(links []Link) (size int) {
341 for _, l := range links {
342 size += 5 // 5 link lvl fields
343 size += len(l.TraceID) + len(l.SpanID)
344 size += estimateAttrSize(l.Attrs)
345 }
346 return
347}

Callers 1

Calls 1

estimateAttrSizeFunction · 0.70

Tested by

no test coverage detected