Skip to content

Commit

Permalink
Add a field to LogEvent to report cell execution status. (#311)
Browse files Browse the repository at this point in the history
Related to #310
  • Loading branch information
jlewi authored Oct 17, 2024
1 parent bd6dd6d commit 46f2ad1
Show file tree
Hide file tree
Showing 7 changed files with 189 additions and 110 deletions.
9 changes: 9 additions & 0 deletions protos/foyle/v1alpha1/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,15 @@ message LogEvent {

// A unique ID for the event
string event_id = 6;

enum ExecuteStatus {
UNKNOWN = 0;
SUCCESS = 1;
FAILED = 2;
}

// The status of the execution. This is only set for execute events
ExecuteStatus execute_status = 7;
}

enum LogEventType {
Expand Down
2 changes: 1 addition & 1 deletion protos/go/foyle/logs/blocks.zap.go

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

2 changes: 1 addition & 1 deletion protos/go/foyle/logs/sessions.zap.go

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

4 changes: 2 additions & 2 deletions protos/go/foyle/logs/traces.zap.go

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

277 changes: 172 additions & 105 deletions protos/go/foyle/v1alpha1/agent.pb.go

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions protos/go/foyle/v1alpha1/agent.zap.go

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

2 changes: 1 addition & 1 deletion protos/go/foyle/v1alpha1/eval.zap.go

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

0 comments on commit 46f2ad1

Please sign in to comment.