FindTraceByID implements tempopb.Querier
(ctx context.Context, req *tempopb.TraceByIDRequest)
| 838 | |
| 839 | // FindTraceByID implements tempopb.Querier |
| 840 | func (s *LiveStore) FindTraceByID(ctx context.Context, req *tempopb.TraceByIDRequest) (*tempopb.TraceByIDResponse, error) { |
| 841 | return withInstance(ctx, s, func(inst *instance) (*tempopb.TraceByIDResponse, error) { |
| 842 | return inst.FindByTraceID(ctx, req.TraceID, req.AllowPartialTrace) |
| 843 | }) |
| 844 | } |
| 845 | |
| 846 | // SearchRecent implements tempopb.Querier |
| 847 | func (s *LiveStore) SearchRecent(ctx context.Context, req *tempopb.SearchRequest) (*tempopb.SearchResponse, error) { |
nothing calls this directly
no test coverage detected