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
8 changes: 8 additions & 0 deletions api/rds.proto
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,11 @@ message RedirectAction {
string path_redirect = 2;
}

message Decorator {
// The operation (or span name) to be used for the matched route.
string operation = 1;
}

// The match/action distinction in Route is surfaced explicitly in the v2 API
// [V2-API-DIFF].
message Route {
Expand All @@ -276,6 +281,9 @@ message Route {

// See base.Metadata description.
Metadata metadata = 4;

// Decorator for matched route.
Decorator decorator = 5;
}

// A virtual cluster is a way of specifying a regex matching rule against
Expand Down