Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.38 KB

File metadata and controls

39 lines (27 loc) · 1.38 KB

OTLP Exporter for OpenTelemetry .NET

NuGet NuGet

The OTLP (OpenTelemetry Protocol) exporter communicates to an OpenTelemetry Collector through a gRPC protocol.

Prerequisite

Installation

dotnet add package OpenTelemetry.Exporter.OpenTelemetryProtocol

Configuration

You can configure the OtlpExporter by following the directions below:

  • ServiceName: Name of the service reporting telemetry.
  • Endpoint: Target to which the exporter is going to send traces or metrics.
  • Credentials: Client-side channel credentials.
  • Headers: Optional headers for the connection.
  • ChannelOptions: gRPC channel options.

See the TestOtlpExporter.cs for an example of how to use the exporter.

References