(ctx context.Context, id common.ID, opts common.SearchOptions)
| 53 | } |
| 54 | |
| 55 | func (c *LocalBlock) FindTraceByID(ctx context.Context, id common.ID, opts common.SearchOptions) (*tempopb.TraceByIDResponse, error) { |
| 56 | ctx, span := tracer.Start(ctx, "LocalBlock.FindTraceByID") |
| 57 | defer span.End() |
| 58 | return c.BackendBlock.FindTraceByID(ctx, id, opts) |
| 59 | } |
| 60 | |
| 61 | func (c *LocalBlock) Search(ctx context.Context, req *tempopb.SearchRequest, opts common.SearchOptions) (*tempopb.SearchResponse, error) { |
| 62 | ctx, span := tracer.Start(ctx, "LocalBlock.Search") |
nothing calls this directly
no test coverage detected