Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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
2 changes: 2 additions & 0 deletions flyteidl2/dataproxy/dataproxy_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ message TailLogsResponse {
message Logs {
// Structured log lines.
repeated flyteidl2.logs.dataplane.LogLine lines = 1;
// Which container these lines are from.
Comment thread
pingsutw marked this conversation as resolved.
flyteidl2.logs.dataplane.ContainerIdentifier container = 2;
Comment thread
pingsutw marked this conversation as resolved.
}

// One or more batches of logs.
Expand Down
4 changes: 2 additions & 2 deletions flyteidl2/logs/dataplane/payload.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ message LoggingContext {

string cluster_name = 3 [(buf.validate.field).string.min_len = 1];
string kubernetes_namespace = 4 [(buf.validate.field).string.min_len = 1];
string kubernetes_pod_name = 5 [(buf.validate.field).string.min_len = 1];
string kubernetes_container_name = 6 [(buf.validate.field).string.min_len = 1];
string kubernetes_pod_name = 5;
string kubernetes_container_name = 6;
google.protobuf.Timestamp execution_attempt_start_time = 7;
google.protobuf.Timestamp execution_attempt_end_time = 8;
map<string, string> kubernetes_pod_labels = 9;
Expand Down
170 changes: 93 additions & 77 deletions gen/go/flyteidl2/dataproxy/dataproxy_service.pb.go

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions gen/go/flyteidl2/dataproxy/dataproxy_service.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

283 changes: 141 additions & 142 deletions gen/go/flyteidl2/logs/dataplane/payload.pb.go

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions gen/python/flyteidl2/dataproxy/dataproxy_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions gen/python/flyteidl2/dataproxy/dataproxy_service_pb2.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading