Skip to content

code-tool/jaeger-client-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

199 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP OpenTracing API using Jaeger

Installation

composer require code-tool/jaeger-client-php

Getting Started

It is strictly advised to use any form of DI container (e.g. Symfony Bundle).

<?php use Jaeger\Tag\StringTag; use Jaeger\Tracer\TracerInterface; /** @var TracerInterface $tracer */ $span = $tracer->start('Parent Operation Name', [new StringTag('test.tag', 'Hello world in parent')]); $childSpan = $tracer->start('Child Operation Name', [new StringTag('test.tag', 'Hello world in child')]); $tracer->finish($childSpan); $tracer->finish($span); 

About

OpenTracing API for PHP

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors