Bootstrap the Implementation for OpenTracing
use OpenTracing::Implementation qw/YourBackend/;
Or if you like, using $ENV{OPENTRACING_IMPLEMENTATION}
use OpenTracing::Implementation;
This module will bootstrap the OpenTracing infrastructure inside your application.
Same could be achieved by creating a new Tracer and setting the singleton, like:
use OpenTracing::Implementation::YourBackend::Tracer;
use OpenTracing::GlobalTracer;
my $my_tracer = OpenTracing::Implementation::YourBackend::Tracer->new( );
OpenTracing::GlobalTracer->set_global_tracer( $my_tracer );
This library is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.
This library is distributed in the hope that it will be useful, but it is provided “as is” and without any express or implied warranties.
For details, see the full text of the license in the file LICENSE.