C# Client for Jaeger (https://jaegertracing.io)
- Implements C# OpenTracing API
- Supports netstandard 2.0
This library is still under construction and needs to be peer reviewed as well as have features added.
This package contains everything you need to get up and running. The meta-package includes the following packages:
The implementation of Jaeger.Core is agnostic to any reporting endpoint and could be even used without any in case of logfile reporting. For more information about the sender concept, have a look at the sender README.
This is a list of sender implementations known to the Jaeger team:
- Jaeger.Senders.Thrift (default, included in
Jaeger)
The following will give you a tracer that reports spans to an ILogger instance from ILoggerFactory.
usingJaeger;usingJaeger.Reporters;usingJaeger.Samplers;usingMicrosoft.Extensions.Logging;varloggerFactory=;// get Microsoft.Extensions.Logging ILoggerFactoryvarserviceName="initExampleService";varreporter=newLoggingReporter(loggerFactory);varsampler=newConstSampler(true);vartracer=newTracer.Builder(serviceName).WithLoggerFactory(loggerFactory).WithReporter(reporter).WithSampler(sampler).Build();This works well if you only want to log to a logging framework. As soon as you want to also get metrics and use a real remote tracer, manually building will get hard pretty fast.
Configuration holds only primitive values and it is designed to be used with configuration files or when configuration is provided in environmental variables.
usingJaeger;usingJaeger.Samplers;usingMicrosoft.Extensions.Logging;varloggerFactory=;// get Microsoft.Extensions.Logging ILoggerFactoryvarserviceName="initExampleService";Configuration.SenderConfiguration.DefaultSenderResolver=newSenderResolver(loggerFactory).RegisterSenderFactory<ThriftSenderFactory>();Configurationconfig=newConfiguration("myServiceName").WithSampler(...)// optional, defaults to RemoteControlledSampler with HttpSamplingManager on localhost:5778.WithReporter(...);// optional, defaults to RemoteReporter with UdpSender on localhost:6831 when ThriftSenderFactory is registeredITracertracer=config.GetTracer();The config objects lazily builds and configures Jaeger Tracer. Multiple calls to GetTracer() return the same instance.
The ThriftSenderFactory is defined as part of the NuGET package Jaeger.Senders.Thrift. This is usually included through the meta-package Jaeger. If you do not want to add a dependency on ApacheThrift when using other Jaeger.Senders.* packages or when defining your own ISender/ISenderFactory, use the package Jaeger.Core directly instead of Jaeger.
By default, Configuration.SenderConfiguration.DefaultSenderResolver does NOT contain any ISenderFactory instances since Jaeger.Core is agnostic of any ISender implementation. All calls to SenderResolver.Resolve will return NoopSender.Instance.
It is also possible to obtain a Jaeger.Configuration object configured using properties specified
as environment variables or system properties. A value specified as a system property will override a value
specified as an environment variable for the same property name.
Configurationconfig=Configuration.FromEnv();The property names are:
| Property | Required | Description |
|---|---|---|
| JAEGER_SERVICE_NAME | yes | The service name |
| JAEGER_AGENT_HOST | no | The hostname for communicating with agent via UDP |
| JAEGER_AGENT_PORT | no | The port for communicating with agent via UDP |
| JAEGER_ENDPOINT | no | The traces endpoint, in case the client should connect directly to the Collector, like http://jaeger-collector:14268/api/traces |
| JAEGER_AUTH_TOKEN | no | Authentication Token to send as "Bearer" to the endpoint |
| JAEGER_USER | no | Username to send as part of "Basic" authentication to the endpoint |
| JAEGER_PASSWORD | no | Password to send as part of "Basic" authentication to the endpoint |
| JAEGER_PROPAGATION | no | Comma separated list of formats to use for propagating the trace context. Defaults to the standard Jaeger format. Valid values are jaeger and b3 |
| JAEGER_REPORTER_LOG_SPANS | no | Whether the reporter should also log the spans |
| JAEGER_REPORTER_MAX_QUEUE_SIZE | no | The reporter's maximum queue size |
| JAEGER_REPORTER_FLUSH_INTERVAL | no | The reporter's flush interval (ms) |
| JAEGER_SAMPLER_TYPE | no | The sampler type |
| JAEGER_SAMPLER_PARAM | no | The sampler parameter (double) |
| JAEGER_SAMPLER_MANAGER_HOST_PORT | no | (DEPRECATED) The host name and port when using the remote controlled sampler |
| JAEGER_SAMPLING_ENDPOINT | no | The url for the remote sampling conf when using sampler type remote. Default is http://127.0.0.1:5778/sampling |
| JAEGER_TAGS | no | A comma separated list of name = value tracer level tags, which get added to all reported spans. The value can also refer to an environment variable using the format ${envVarName:default}, where the :default is optional, and identifies a value to be used if the environment variable cannot be found |
| JAEGER_SENDER_FACTORY | no | The name of the sender factory to use if multiple are available |
| JAEGER_TRACEID_128BIT | no | Whether to use 128bit TraceID instead of 64bit |
Setting JAEGER_AGENT_HOST/JAEGER_AGENT_PORT will make the client send traces to the agent via UdpSender.
If the JAEGER_ENDPOINT environment variable is also set, the traces are sent to the endpoint, effectively making
the JAEGER_AGENT_* vars ineffective.
When the JAEGER_ENDPOINT is set, the HttpSender is used when submitting traces to a remote
endpoint, usually served by a Jaeger Collector. If the endpoint is secured, a HTTP Basic Authentication
can be performed by setting the related environment vars. Similarly, if the endpoint expects an authentication
token, like a JWT, set the JAEGER_AUTH_TOKEN environment variable. If the Basic Authentication environment
variables and the Auth Token environment variable are set, Basic Authentication is used.
For more information on reporting see the reporting README
For more information on sampling see the sampling README
When your code is called you might want to pull current trace information out of calling information before building and starting a span. This allows you to link your span into a current trace and track its relation to other spans. By default text map and http headers are supported. More support is planned for the future as well as allowing custom extractors.
usingOpenTracing.Propagation;// where you get Format fromvarcallingHeaders=newTextMapExtractAdapter(...);// get the calling headersvarcallingSpanContext=tracer.Extract(BuiltinFormats.HttpHeaders,callingHeaders);You can then use the callingSpanContext when adding references with the SpanBuilder.
In order to pass along the trace information in calls so others can extract it you need to inject it into the carrier.
usingOpenTracing.Propagation;// where you get BuiltinFormats fromvarspanContext=span.Context;// pulled from your current spanvarnewCallHeaders=newTextMapInjectAdapter(null);// get the calling headerstracer.Inject(spanContext,BuiltinFormats.HttpHeaders,newCallHeaders);You can then pass along the headers and as along as what you are calling knows how to extract that format you are good to go.
Before you start a span you will want to build it out. You can do this using the span builder. You would build a span for each operation you wanted to trace.
varoperationName="Get::api/values/";varbuilder=tracer.BuildSpan(operationName);Any tags you add to the span builder will be added to the span on start and reported to the reporting system you have setup when the span is reported. The following types are supported as tags: bool, double, int, string.
builder.WithTag("machine.name","machine1").WithTag("cpu.cores",8);Some well-known tags are defined in OpenTracing.Tag and can be used as follows:
usingOpenTracing.Tag;builder.WithTag(Tags.SpanKind,Tags.SpanKindClient).WithTag(Tags.DbType,"sql");References allow you to show how this span relates to another span. You need the SpanContext of the span you want to reference. If you add a child_of reference the SpanBuilder will use that as the parent of the span being built.
builder.AddReference(References.FollowsFrom,spanContext);There also exist helper methods to simplify adding child of references.
Shorthand for adding a chold of reference. You can pass in an ISpan or and ISpanContext.
builder.AsChildOf(iSpanOrISpanContext);Starting the span from the span builder will figure out if there is a parent for the span, create a context for the span, and pass along all references and tags.
You can start the span right now:
varspan=builder.Start();Or you can start it at a specific time:
varstartTime=DateTimeOffset.Now;varspan=builder.WithStartTimestamp(startTime).Start();If you want to start a span and use it as an active span, you can use a scoped span.
using(varscope=builder.StartActive(true)){varspan=scope.Span;}This will automatically define the newly created span as child of the span that was active at that time. If no span was active, it will be created as root span.
In addition will the scope span be automatically finished when the scope ends, even if the using-Block throws an exception.
After creating a span and before finishing it, you can add and change some information on a span.
Baggage is key/value data that is passed along the wire and shared with other spans. You can get and set baggage data from the span object.
varmobileVersion=span.GetBaggageItem("mobile.version");span.SetBaggageItem("back-end.version","0.0.1");You can log structured data which allows you to tie information from what's happening along the lifetime of a span to the time that it happened. You can log a list of key/value data or an event at a specific time.
varlogData=newList<KeyValuePair<string,object>>{{"handling number of events",6},{"using legacy system",false}};span.Log(DateTimeOffset.Now,logData);or you can pass it without a timestamp and the timestamp will be sent for you:
span.Log(logData);Events are a little different in that they're just a string.
varevent="loop_finished";span.Log(DateTimeOffset.Now,event);and as above you can send an event in without a timestamp:
span.Log(event);Tags can be set using SetTag(<key>, <value>) and follows the builder WithTag in the data types it accepts.
You can change the operation name from what was originally set on the span when it was created.
span.SetOperationName("PUT::api/values/");Span implements IDisposable so a using statement will automatically finish your span. However, you can also call Finish. You can either pass in the finish time or let the library handle that for you.
span.Finish(DateTimeOffset.Now);or
span.Finish();We welcome community contributions to this project. Please see CONTRIBUTING.md for more details.
By contributing your code, you agree to license your contribution under the terms of the APLv2.
All files are released with the Apache 2.0 license.