Skip to content

Commit

Permalink
Add custom_data field to LogEntry
Browse files Browse the repository at this point in the history
  • Loading branch information
udim authored and cushon committed May 24, 2024
1 parent f45ff0c commit 948eeb6
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ import "org/apache/beam/model/pipeline/v1/beam_runner_api.proto";
import "org/apache/beam/model/pipeline/v1/endpoints.proto";
import "org/apache/beam/model/pipeline/v1/metrics.proto";
import "google/protobuf/descriptor.proto";
import "google/protobuf/struct.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/duration.proto";

Expand Down Expand Up @@ -1064,6 +1065,11 @@ message LogEntry {

// (Optional) The name of the thread this log statement is associated with.
string thread = 8;

// (Optional) Additional structured data to log.
// Keys are limited to these characters: [a-zA-Z_-]
// Experimental.
google.protobuf.Struct custom_data = 9;
}

message LogControl {}
Expand Down

0 comments on commit 948eeb6

Please sign in to comment.