From 334458ff75a9b1dfe1c1d4891a18913f8e00bc1f Mon Sep 17 00:00:00 2001 From: "data-plane-api(CircleCI)" Date: Mon, 5 Aug 2019 23:07:08 +0000 Subject: [PATCH] tracing: Update OpenCensus. (#7797) Let the config override the Stackdriver address. This can be used for proxying and testing. Signed-off-by: Emil Mikulic Mirrored from https://github.com/envoyproxy/envoy @ 3e63182c3e74e0d517d2f0d1fc2ee950bbfe21e1 --- envoy/config/trace/v2/trace.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/envoy/config/trace/v2/trace.proto b/envoy/config/trace/v2/trace.proto index 3fe4d1ff..34f11ec7 100644 --- a/envoy/config/trace/v2/trace.proto +++ b/envoy/config/trace/v2/trace.proto @@ -123,6 +123,12 @@ message OpenCensusConfig { // The Cloud project_id to use for Stackdriver tracing. string stackdriver_project_id = 4; + // (optional) By default, the Stackdriver exporter will connect to production + // Stackdriver. If stackdriver_address is non-empty, it will instead connect + // to this address, which is in the gRPC format: + // https://github.com/grpc/grpc/blob/master/doc/naming.md + string stackdriver_address = 10; + // Enables the Zipkin exporter if set to true. The url and service name must // also be set. bool zipkin_exporter_enabled = 5;