You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Supported by OTLP exporter protocol types according to the specification https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md.
/// </summary>
public enum OtlpExportProtocol : byte
{
/// <summary>
/// OTLP over gRPC (corresponds to 'grpc' Protocol configuration option). Used as default.
/// </summary>
#if NET462_OR_GREATER || NETSTANDARD2_0
[Obsolete("CAUTION: OTLP/gRPC is no longer supported for .NET Framework or .NET Standard targets without supplying a properly configured HttpClientFactory. It is strongly encouraged that you migrate to using OTLP/HTTPPROTOBUF.")]
#endif
Grpc = 0,
/// <summary>
/// OTLP over HTTP with protobuf payloads (corresponds to 'http/protobuf' Protocol configuration option).