(limit int)
| 37 | } |
| 38 | |
| 39 | func newAnyCombiner(limit int) *anyCombiner { |
| 40 | return &anyCombiner{ |
| 41 | trs: make(map[string]*tempopb.TraceSearchMetadata, limit), |
| 42 | limit: limit, |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | // addSpanset adds a new spanset to the combiner. It only performs the asTraceSearchMetadata |
| 47 | // conversion if the spanset will be added |
no outgoing calls
no test coverage detected