Skip to content

Commit

Permalink
fix: make ppid not optional in protobuf models
Browse files Browse the repository at this point in the history
  • Loading branch information
kruskall committed May 29, 2023
1 parent 678e61f commit bcefefd
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 33 deletions.
48 changes: 23 additions & 25 deletions model/modelpb/process.pb.go

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

13 changes: 6 additions & 7 deletions model/modelpb/process_vtproto.pb.go

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

2 changes: 1 addition & 1 deletion model/proto/process.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package elastic.apm.v1;
option go_package = "github.com/elastic/apm-data/model/modelpb";

message Process {
optional uint32 ppid = 1;
uint32 ppid = 1;
ProcessThread thread = 2;
string title = 3;
string command_line = 4;
Expand Down

0 comments on commit bcefefd

Please sign in to comment.