NAME
OpenTracing::DSL - application tracing
SYNOPSIS
use OpenTracing::DSL qw(:v1);
trace {
my ($span) = @_;
print 'operation starts here';
$span->add_tag(internal_details => '...');
sleep 2;
print 'end of operation';
};
AUTHOR
Tom Molesworth <TEAM@cpan.org>
LICENSE
Copyright Tom Molesworth 2018-2019. Licensed under the same terms as Perl itself.