span implements traceql.Span
| 39 | |
| 40 | // span implements traceql.Span |
| 41 | type span struct { |
| 42 | spanAttrs []attrVal |
| 43 | resourceAttrs []attrVal |
| 44 | traceAttrs []attrVal |
| 45 | eventAttrs []attrVal |
| 46 | linkAttrs []attrVal |
| 47 | instrumentationAttrs []attrVal |
| 48 | |
| 49 | id []byte |
| 50 | startTimeUnixNanos uint64 |
| 51 | durationNanos uint64 |
| 52 | nestedSetParent int32 |
| 53 | nestedSetLeft int32 |
| 54 | nestedSetRight int32 |
| 55 | |
| 56 | // metadata used to track the span in the parquet file |
| 57 | rowNum parquetquery.RowNumber |
| 58 | cbSpansetFinal bool |
| 59 | cbSpanset *traceql.Spanset |
| 60 | } |
| 61 | |
| 62 | func (s *span) Release() { |
| 63 | putSpan(s) |
nothing calls this directly
no outgoing calls
no test coverage detected