Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 1.07 KB

File metadata and controls

35 lines (20 loc) · 1.07 KB

Silverback + Opentracing

Build Status

Nuget

Propagates trace information through pub/sub pattern

Inspired by this project

How to use

Ensure that GlobalTracer is initialized

Just add UseOpenTracing():

public void ConfigureServices(IServiceCollection services)
{
    services.AddSilverback()
        .UseOpenTracing();;
}

This will add two behaviors ConsumerTracingBehavior and ProducerTracingBehavior.

Examples

jaeger

See examples/OpenTracing.Example for full setup

Enjoy ;)