Skip to content
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
6 changes: 6 additions & 0 deletions protos/orchestrator_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ message SubOrchestrationInstanceCreatedEvent {
google.protobuf.StringValue version = 3;
google.protobuf.StringValue input = 4;
TraceContext parentTraceContext = 5;
map<string, string> tags = 6;
}

message SubOrchestrationInstanceCompletedEvent {
Expand Down Expand Up @@ -225,6 +226,11 @@ message ExecutionRewoundEvent {
google.protobuf.StringValue parentExecutionId = 2; // used only for rewinding suborchestrations, null otherwise
google.protobuf.StringValue instanceId = 3; // used only for rewinding suborchestrations, null otherwise
TraceContext parentTraceContext = 4; // used only for rewinding suborchestrations, null otherwise
google.protobuf.StringValue name = 5; // used by DTS backend only
google.protobuf.StringValue version = 6; // used by DTS backend only
google.protobuf.StringValue input = 7; // used by DTS backend only
ParentInstanceInfo parentInstance = 8; // used by DTS backend only
map<string, string> tags = 9; // used by DTS backend only
}

message HistoryEvent {
Expand Down