You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
587 B
20 lines
587 B
7 years ago
|
syntax = "proto3";
|
||
|
|
||
|
// [#proto-status: draft]
|
||
|
|
||
|
// [#protodoc-title: Metrics Service]
|
||
|
|
||
|
package envoy.config.metrics.v2;
|
||
|
|
||
|
import "envoy/api/v2/grpc_service.proto";
|
||
|
|
||
|
import "validate/validate.proto";
|
||
|
|
||
|
// Metrics Service is configured as a built-in *envoy.metrics_service* :ref:`StatsSink
|
||
|
// <envoy_api_msg_config.metrics.v2.StatsSink>`. This opaque configuration will be used to create
|
||
|
// Metrics Service.
|
||
|
message MetricsServiceConfig {
|
||
|
// The upstream gRPC cluster that hosts the metrics service.
|
||
|
envoy.api.v2.GrpcService grpc_service = 1 [(validate.rules).message.required = true];
|
||
|
}
|