123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // THIS FILE IS DEPRECATED
- // Users should instead use the corresponding proto in the xds tree.
- // No new changes will be accepted here.
- syntax = "proto3";
- package udpa.service.orca.v1;
- option java_outer_classname = "OrcaProto";
- option java_multiple_files = true;
- option java_package = "com.github.udpa.udpa.service.orca.v1";
- option go_package = "github.com/cncf/xds/go/udpa/service/orca/v1";
- import "udpa/data/orca/v1/orca_load_report.proto";
- import "google/protobuf/duration.proto";
- import "validate/validate.proto";
- // See section `Out-of-band (OOB) reporting` of the design document in
- // :ref:`https://github.com/envoyproxy/envoy/issues/6614`.
- // Out-of-band (OOB) load reporting service for the additional load reporting
- // agent that does not sit in the request path. Reports are periodically sampled
- // with sufficient frequency to provide temporal association with requests.
- // OOB reporting compensates the limitation of in-band reporting in revealing
- // costs for backends that do not provide a steady stream of telemetry such as
- // long running stream operations and zero QPS services. This is a server
- // streaming service, client needs to terminate current RPC and initiate
- // a new call to change backend reporting frequency.
- service OpenRcaService {
- rpc StreamCoreMetrics(OrcaLoadReportRequest) returns (stream udpa.data.orca.v1.OrcaLoadReport);
- }
- message OrcaLoadReportRequest {
- // Interval for generating Open RCA core metric responses.
- google.protobuf.Duration report_interval = 1;
- // Request costs to collect. If this is empty, all known requests costs tracked by
- // the load reporting agent will be returned. This provides an opportunity for
- // the client to selectively obtain a subset of tracked costs.
- repeated string request_cost_names = 2;
- }
|