import cncf/xds using import.sh script (#10160)

This commit is contained in:
Daniel Liu 2023-05-10 12:42:26 -07:00 committed by GitHub
parent 02a4cb5c69
commit 6e486cba48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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<string, double> named_metrics = 8;
}