1syntax = "proto3";
2
3package envoy.api.v2.core;
4
5import "envoy/api/v2/core/grpc_service.proto";
6
7import "udpa/annotations/migrate.proto";
8import "udpa/annotations/status.proto";
9import "validate/validate.proto";
10
11option java_package = "io.envoyproxy.envoy.api.v2.core";
12option java_outer_classname = "EventServiceConfigProto";
13option java_multiple_files = true;
14option go_package = "github.com/envoyproxy/go-control-plane/envoy/api/v2/core";
15option (udpa.annotations.file_migrate).move_to_package = "envoy.config.core.v3";
16option (udpa.annotations.file_status).package_version_status = FROZEN;
17
18// [#not-implemented-hide:]
19// Configuration of the event reporting service endpoint.
20message EventServiceConfig {
21  oneof config_source_specifier {
22    option (validate.required) = true;
23
24    // Specifies the gRPC service that hosts the event reporting service.
25    GrpcService grpc_service = 1;
26  }
27}
28