12345678910111213141516171819202122232425262728293031323334353637 |
- syntax = "proto3";
- package envoy.config.trace.v3;
- 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 = "DynamicOtProto";
- 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.dynamic_ot.v4alpha";
- option (udpa.annotations.file_status).package_version_status = ACTIVE;
- // [#protodoc-title: Dynamically loadable OpenTracing tracer]
- // DynamicOtConfig is used to dynamically load a tracer from a shared library
- // that implements the `OpenTracing dynamic loading API
- // <https://github.com/opentracing/opentracing-cpp>`_.
- // [#extension: envoy.tracers.dynamic_ot]
- message DynamicOtConfig {
- option (udpa.annotations.versioning).previous_message_type =
- "envoy.config.trace.v2.DynamicOtConfig";
- // Dynamic library implementing the `OpenTracing API
- // <https://github.com/opentracing/opentracing-cpp>`_.
- string library = 1 [(validate.rules).string = {min_len: 1}];
- // The configuration to use when creating a tracer from the given dynamic
- // library.
- google.protobuf.Struct config = 2;
- }
|