Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.33 KB

File metadata and controls

38 lines (26 loc) · 1.33 KB

Jaeger Exporter for OpenTelemetry .NET

NuGet NuGet

The Jaeger exporter communicates to a Jaeger Agent through the compact thrift protocol on the Compact Thrift API port.

Prerequisite

Installation

dotnet add package OpenTelemetry.Exporter.Jaeger

Configuration

You can configure the JaegerExporter by following the directions below:

  • ServiceName: The name of your application or service.
  • AgentHost: Usually localhost since an agent should usually be running on the same machine as your application or service.
  • AgentPort: The compact thrift protocol port of the Jaeger Agent (default 6831).
  • MaxPacketSize: The maximum size of each UDP packet that gets sent to the agent. (default 65000).

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

References