Skip to content
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

feat: optimus replay ignore upstreams #124

Merged
merged 3 commits into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions gotocompany/optimus/core/v1beta1/replay.proto
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ service ReplayService {
put: "/v1beta1/project/{project_name}/replay/{replay_id}/cancel"
};
}

rpc GetReplayDetails(GetReplayDetailsRequest) returns (GetReplayDetailsResponse) {
option (google.api.http) = {
get: "/v1beta1/project/{project_name}/replay"
};
}
}

message ListReplayRequest {
Expand Down Expand Up @@ -127,3 +133,15 @@ message CancelReplayResponse {
string job_name = 1;
repeated ReplayRun replay_runs = 2;
}

message GetReplayDetailsRequest {
string project_name = 1;
string replay_id = 2;
repeated string job_names = 3;
google.protobuf.Timestamp scheduled_at = 4;
string status = 5;
}

message GetReplayDetailsResponse {
repeated GetReplayResponse replays = 1;
}
Loading