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.
37 lines
1.3 KiB
37 lines
1.3 KiB
5 years ago
|
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 (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_bytes: 1}];
|
||
|
|
||
|
// The configuration to use when creating a tracer from the given dynamic
|
||
|
// library.
|
||
|
google.protobuf.Struct config = 2;
|
||
|
}
|