Skip to content

Commit

Permalink
Remove gogoproto related code in api_v3 query_service proto file
Browse files Browse the repository at this point in the history
Signed-off-by: rim99 <zhangxin@outlook.com>
  • Loading branch information
rim99 committed Nov 10, 2024
1 parent 5f4ef40 commit 08204be
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions proto/api_v3/query_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ syntax="proto3";
package jaeger.api_v3;

import "opentelemetry/proto/trace/v1/trace.proto";
import "gogoproto/gogo.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/duration.proto";

Expand All @@ -26,19 +25,12 @@ option java_package = "io.jaegertracing.api_v3";

// Request object to get a trace.
message GetTraceRequest {
option (gogoproto.marshaler) = true;
option (gogoproto.unmarshaler) = true;
option (gogoproto.sizer) = true;
// Hex encoded 64 or 128 bit trace ID.
string trace_id = 1;
// Optional. The start time to search trace ID.
google.protobuf.Timestamp start_time = 2 [
(gogoproto.stdtime) = true
];
google.protobuf.Timestamp start_time = 2;
// Optional. The end time to search trace ID.
google.protobuf.Timestamp end_time = 3 [
(gogoproto.stdtime) = true
];
google.protobuf.Timestamp end_time = 3;
}

// Query parameters to find traces. Except for num_traces, all fields should be treated
Expand Down

0 comments on commit 08204be

Please sign in to comment.