From e2b179105e37a367ff4a8184fb366bcd08251f23 Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Tue, 9 May 2023 17:52:47 +0000 Subject: [PATCH] import cncf/xds using import.sh script --- xds/third_party/xds/import.sh | 2 +- .../src/main/proto/xds/data/orca/v3/orca_load_report.proto | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/xds/third_party/xds/import.sh b/xds/third_party/xds/import.sh index 1f80275bbec..d11e44161c2 100755 --- a/xds/third_party/xds/import.sh +++ b/xds/third_party/xds/import.sh @@ -18,7 +18,7 @@ set -e BRANCH=main # import VERSION from one of the google internal CLs -VERSION=06c439db220b89134a8a49bad41994560d6537c6 +VERSION=32f1caf87195bf3390061c29f18987e51ca56a88 GIT_REPO="https://github.com/cncf/xds.git" GIT_BASE_DIR=xds SOURCE_PROTO_BASE_DIR=xds diff --git a/xds/third_party/xds/src/main/proto/xds/data/orca/v3/orca_load_report.proto b/xds/third_party/xds/src/main/proto/xds/data/orca/v3/orca_load_report.proto index 5176c4faa08..4996164a325 100644 --- a/xds/third_party/xds/src/main/proto/xds/data/orca/v3/orca_load_report.proto +++ b/xds/third_party/xds/src/main/proto/xds/data/orca/v3/orca_load_report.proto @@ -38,4 +38,11 @@ message OrcaLoadReport { // Total RPS being served by an endpoint. This should cover all services that an endpoint is // responsible for. double rps_fractional = 6 [(validate.rules).double.gte = 0]; + + // Total EPS (errors/second) being served by an endpoint. This should cover + // all services that an endpoint is responsible for. + double eps = 7 [(validate.rules).double.gte = 0]; + + // Application specific opaque metrics. + map named_metrics = 8; }