[READ ONLY MIRROR] Envoy REST/proto API definitions and documentation.
(grpc依赖)
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.
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
// [#protodoc-title: Metrics service]
|
|
|
|
|
|
|
|
package envoy.config.metrics.v2;
|
|
|
|
option java_package = "io.envoyproxy.envoy.config.metrics.v2";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
|
|
|
import "envoy/api/v2/core/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.core.GrpcService grpc_service = 1 [(validate.rules).message.required = true];
|
|
|
|
}
|