1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- syntax = "proto3";
- package envoy.config.trace.v3;
- import "envoy/config/core/v3/address.proto";
- import "envoy/config/core/v3/base.proto";
- import "google/protobuf/struct.proto";
- import "udpa/annotations/migrate.proto";
- import "udpa/annotations/status.proto";
- import "udpa/annotations/versioning.proto";
- import "validate/validate.proto";
- option java_package = "io.envoyproxy.envoy.config.trace.v3";
- option java_outer_classname = "XrayProto";
- option java_multiple_files = true;
- option go_package = "github.com/envoyproxy/go-control-plane/envoy/config/trace/v3;tracev3";
- option (udpa.annotations.file_migrate).move_to_package = "envoy.extensions.tracers.xray.v4alpha";
- option (udpa.annotations.file_status).package_version_status = ACTIVE;
- // [#protodoc-title: AWS X-Ray Tracer Configuration]
- // Configuration for AWS X-Ray tracer
- // [#extension: envoy.tracers.xray]
- message XRayConfig {
- option (udpa.annotations.versioning).previous_message_type =
- "envoy.config.trace.v2alpha.XRayConfig";
- message SegmentFields {
- // The type of AWS resource, e.g. "AWS::AppMesh::Proxy".
- string origin = 1;
- // AWS resource metadata dictionary.
- // See: `X-Ray Segment Document documentation <https://docs.aws.amazon.com/xray/latest/devguide/xray-api-segmentdocuments.html#api-segmentdocuments-aws>`__
- google.protobuf.Struct aws = 2;
- }
- // The UDP endpoint of the X-Ray Daemon where the spans will be sent.
- // If this value is not set, the default value of 127.0.0.1:2000 will be used.
- core.v3.SocketAddress daemon_endpoint = 1;
- // The name of the X-Ray segment.
- string segment_name = 2 [(validate.rules).string = {min_len: 1}];
- // The location of a local custom sampling rules JSON file.
- // For an example of the sampling rules see:
- // `X-Ray SDK documentation
- // <https://docs.aws.amazon.com/xray/latest/devguide/xray-sdk-go-configuration.html#xray-sdk-go-configuration-sampling>`_
- core.v3.DataSource sampling_rule_manifest = 3;
- // Optional custom fields to be added to each trace segment.
- // see: `X-Ray Segment Document documentation
- // <https://docs.aws.amazon.com/xray/latest/devguide/xray-api-segmentdocuments.html>`__
- SegmentFields segment_fields = 4;
- }
|