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

Function estimateEventsSize

tempodb/encoding/vparquet4/create.go:316–322  ·  view source on GitHub ↗
(events []Event)

Source from the content-addressed store, hash-verified

314}
315
316func estimateEventsSize(events []Event) (size int) {
317 for _, e := range events {
318 size += 4 // 4 event lvl fields
319 size += 4 * len(e.Attrs) // 2 event attribute fields
320 }
321 return
322}

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected