-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add optional time window in TraceGetParameters #6159
base: main
Are you sure you want to change the base?
Add optional time window in TraceGetParameters #6159
Conversation
cb5f24f
to
d00b4d3
Compare
a0bb411
to
74fd1e5
Compare
please rebase |
d6eeed8
to
2d6c9ed
Compare
Signed-off-by: rim99 <[email protected]>
7c3ab0c
to
3d939f2
Compare
@yurishkuro Updated bsaed on comments, please reivew this PR, thanks |
CONTAINER=docker | ||
CONTAINER_PROTOBUF_VERSION=0.5.0 | ||
CONTAINER_PROTOBUF=jaegertracing/protobuf:$(CONTAINER_PROTOBUF_VERSION) | ||
PROTOC := ${CONTAINER} run --rm -u ${shell id -u} -v${PWD}:${PWD} -w${PWD} ${CONTAINER_PROTOBUF} --proto_path=${PWD} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CONTAINER=docker | |
CONTAINER_PROTOBUF_VERSION=0.5.0 | |
CONTAINER_PROTOBUF=jaegertracing/protobuf:$(CONTAINER_PROTOBUF_VERSION) | |
PROTOC := ${CONTAINER} run --rm -u ${shell id -u} -v${PWD}:${PWD} -w${PWD} ${CONTAINER_PROTOBUF} --proto_path=${PWD} | |
DOCKER=docker | |
DOCKER_PROTOBUF_VERSION=0.5.0 | |
DOCKER_PROTOBUF=jaegertracing/protobuf:$(DOCKER_PROTOBUF_VERSION) | |
PROTOC :=$(DOCKER) run --rm -u ${shell id -u} -v${PWD}:${PWD} -w${PWD} ${DOCKER_PROTOBUF} --proto_path=${PWD} |
@@ -72,6 +72,14 @@ message GetTraceRequest { | |||
(gogoproto.customtype) = "github.com/jaegertracing/jaeger/model.TraceID", | |||
(gogoproto.customname) = "TraceID" | |||
]; | |||
google.protobuf.Timestamp start_time = 2 [ | |||
(gogoproto.stdtime) = true, | |||
(gogoproto.nullable) = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(gogoproto.nullable) = true | |
(gogoproto.nullable) = false |
]; | ||
google.protobuf.Timestamp end_time = 3 [ | ||
(gogoproto.stdtime) = true, | ||
(gogoproto.nullable) = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(gogoproto.nullable) = true | |
(gogoproto.nullable) = false |
@@ -72,6 +72,14 @@ message GetTraceRequest { | |||
(gogoproto.customtype) = "github.com/jaegertracing/jaeger/model.TraceID", | |||
(gogoproto.customname) = "TraceID" | |||
]; | |||
google.protobuf.Timestamp start_time = 2 [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please move this change to a separate PR
@rim99 this PR is too large, please break it into logical pieces. At minimum grpc storage changes could be a separate PR, e.g. changing the IDL. The anonymizer change can be separate. |
you have jaeger-ui submodule change, it's not related |
Cool, I'll keep creating new PRs and rebasing until we're satisfied with the size of this PR. And frist PR is: #6242 . Other changes rely on this |
Which problem is this PR solving?
Resolves #4150
Description of the changes
How was this change tested?
Checklist
jaeger
:make lint test
jaeger-ui
:yarn lint
andyarn test