Skip to content
Open
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 ratis-proto/src/main/proto/Raft.proto
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ message RaftRpcRequestProto {
uint64 timeoutMs = 13;
RoutingTableProto routingTable = 14;
SlidingWindowEntry slidingWindowEntry = 15;
SpanContextProto spanContext = 16;
}

message SlidingWindowEntry {
Expand Down Expand Up @@ -569,3 +570,8 @@ message LogInfoProto {
TermIndexProto committed = 3;
TermIndexProto lastEntry = 4;
}

// The attribute map for opentelemetry trace
message SpanContextProto {
map<string, string> context = 1;
}
Loading