-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Found new managed modules references (#312)
- Loading branch information
1 parent
3a21ffb
commit 78c4988
Showing
9 changed files
with
1,689 additions
and
3 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
...7d70b19359a8f771f82b222bf2987c8fbf517530c3f45e6a4319efc8aa63af3bad9659194a52854bfa39e7491
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
syntax = "proto3"; | ||
|
||
package envoy.extensions.tracers.opentelemetry.resource_detectors.v3; | ||
|
||
import "udpa/annotations/status.proto"; | ||
|
||
option java_package = "io.envoyproxy.envoy.extensions.tracers.opentelemetry.resource_detectors.v3"; | ||
option java_outer_classname = "EnvironmentResourceDetectorProto"; | ||
option java_multiple_files = true; | ||
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/resource_detectors/v3;resource_detectorsv3"; | ||
option (udpa.annotations.file_status).package_version_status = ACTIVE; | ||
|
||
// [#protodoc-title: Environment Resource Detector config] | ||
|
||
// Configuration for the Environment Resource detector extension. | ||
// The resource detector reads from the ``OTEL_RESOURCE_ATTRIBUTES`` | ||
// environment variable, as per the OpenTelemetry specification. | ||
// | ||
// See: | ||
// | ||
// `OpenTelemetry specification <https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0/specification/resource/sdk.md#detecting-resource-information-from-the-environment>`_ | ||
// | ||
// [#extension: envoy.tracers.opentelemetry.resource_detectors.environment] | ||
message EnvironmentResourceDetectorConfig { | ||
} |
388 changes: 388 additions & 0 deletions
388
...851b3a79276b883c84a3a376c45f251ab809d634edb00e9cd543bd816f14046a803916e4ee92493ce46239aa3
Large diffs are not rendered by default.
Oops, something went wrong.
557 changes: 557 additions & 0 deletions
557
...9a826582b363b9270580ac8136b9cbfc8c42d6c972bfaffc0553151eb1472bb1bf1a6d9a57c8ef1937019108d
Large diffs are not rendered by default.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
...28950c3350677b906544665cb83cbbc7bac89f96529d7c83ce573b86c95f32a197a9f310da62a860ddfa50ded
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
syntax = "proto3"; | ||
|
||
package envoy.config.trace.v3; | ||
|
||
import "envoy/config/core/v3/extension.proto"; | ||
import "envoy/config/core/v3/grpc_service.proto"; | ||
import "envoy/config/core/v3/http_service.proto"; | ||
|
||
import "udpa/annotations/migrate.proto"; | ||
import "udpa/annotations/status.proto"; | ||
|
||
option java_package = "io.envoyproxy.envoy.config.trace.v3"; | ||
option java_outer_classname = "OpentelemetryProto"; | ||
option java_multiple_files = true; | ||
option go_package = "github.com/envoyproxy/go-control-plane/envoy/config/trace/v3;tracev3"; | ||
option (udpa.annotations.file_status).package_version_status = ACTIVE; | ||
|
||
// [#protodoc-title: OpenTelemetry tracer] | ||
|
||
// Configuration for the OpenTelemetry tracer. | ||
// [#extension: envoy.tracers.opentelemetry] | ||
message OpenTelemetryConfig { | ||
// The upstream gRPC cluster that will receive OTLP traces. | ||
// Note that the tracer drops traces if the server does not read data fast enough. | ||
// This field can be left empty to disable reporting traces to the gRPC service. | ||
// Only one of ``grpc_service``, ``http_service`` may be used. | ||
core.v3.GrpcService grpc_service = 1 | ||
[(udpa.annotations.field_migrate).oneof_promotion = "otlp_exporter"]; | ||
|
||
// The upstream HTTP cluster that will receive OTLP traces. | ||
// This field can be left empty to disable reporting traces to the HTTP service. | ||
// Only one of ``grpc_service``, ``http_service`` may be used. | ||
// | ||
// .. note:: | ||
// | ||
// Note: The ``request_headers_to_add`` property in the OTLP HTTP exporter service | ||
// does not support the :ref:`format specifier <config_access_log_format>` as used for | ||
// :ref:`HTTP access logging <config_access_log>`. | ||
// The values configured are added as HTTP headers on the OTLP export request | ||
// without any formatting applied. | ||
core.v3.HttpService http_service = 3 | ||
[(udpa.annotations.field_migrate).oneof_promotion = "otlp_exporter"]; | ||
|
||
// The name for the service. This will be populated in the ResourceSpan Resource attributes. | ||
// If it is not provided, it will default to "unknown_service:envoy". | ||
string service_name = 2; | ||
|
||
// An ordered list of resource detectors | ||
// [#extension-category: envoy.tracers.opentelemetry.resource_detectors] | ||
repeated core.v3.TypedExtensionConfig resource_detectors = 4; | ||
} |
557 changes: 557 additions & 0 deletions
557
...663a4d97996b7be1e3e86e69d687dc9b42f4aa738478cca9b9fb4b6014390d6a0301f154a3f284d58a9506f4e
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters