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.
24 lines
770 B
24 lines
770 B
5 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.config.trace.v2;
|
||
|
|
||
|
import "udpa/annotations/status.proto";
|
||
|
import "validate/validate.proto";
|
||
|
|
||
|
option java_package = "io.envoyproxy.envoy.config.trace.v2";
|
||
|
option java_outer_classname = "DatadogProto";
|
||
|
option java_multiple_files = true;
|
||
|
option (udpa.annotations.file_status).package_version_status = FROZEN;
|
||
|
|
||
|
// [#protodoc-title: Datadog tracer]
|
||
|
|
||
|
// Configuration for the Datadog tracer.
|
||
|
// [#extension: envoy.tracers.datadog]
|
||
|
message DatadogConfig {
|
||
|
// The cluster to use for submitting traces to the Datadog agent.
|
||
|
string collector_cluster = 1 [(validate.rules).string = {min_bytes: 1}];
|
||
|
|
||
|
// The name used for the service when traces are generated by envoy.
|
||
|
string service_name = 2 [(validate.rules).string = {min_bytes: 1}];
|
||
|
}
|