Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 977 Bytes

File metadata and controls

32 lines (21 loc) · 977 Bytes

Zipkin Exporter for OpenTelemetry .NET

NuGet NuGet

Prerequisite

Installation

dotnet add package OpenTelemetry.Exporter.Zipkin

Configuration

You can configure the ZipkinExporter by following the directions below:

  • Endpoint: Zipkin endpoint address.
  • TimeoutSeconds: Timeout in seconds.
  • ServiceName: Name of the service reporting telemetry.
  • UseShortTraceIds: Value indicating whether short trace id should be used.

See TestZipkinExporter.cs for example use.

References