From 16da94c42f6c58a590dbd8fdcfcf3e132242e03b Mon Sep 17 00:00:00 2001 From: rim99 Date: Mon, 25 Nov 2024 07:46:20 +0800 Subject: [PATCH] add more TODOs Signed-off-by: rim99 --- cmd/query/app/http_handler.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/query/app/http_handler.go b/cmd/query/app/http_handler.go index 97258e3161b6..899ca208411e 100644 --- a/cmd/query/app/http_handler.go +++ b/cmd/query/app/http_handler.go @@ -266,6 +266,7 @@ func (aH *APIHandler) tracesByIDs(ctx context.Context, traceIDs []model.TraceID) var traceErrors []structuredError retMe := make([]*model.Trace, 0, len(traceIDs)) for _, traceID := range traceIDs { + // TODO: add start time & end time query := spanstore.GetTraceParameters{ TraceID: traceID, } @@ -432,6 +433,7 @@ func (aH *APIHandler) getTrace(w http.ResponseWriter, r *http.Request) { if !ok { return } + // TODO: add start time & end time query := spanstore.GetTraceParameters{ TraceID: traceID, }