We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 489a5d1 commit 3b1dcc1Copy full SHA for 3b1dcc1
README.md
@@ -13,6 +13,11 @@ It is strictly advised to use any form of DI container (e.g. [Symfony Bundle](ht
13
```php
14
<?php
15
16
+use Jaeger\Tag\StringTag;
17
+use Jaeger\Tracer\TracerInterface;
18
+
19
+/** @var TracerInterface $tracer */
20
21
$span = $tracer->start('Parent Operation Name', [new StringTag('test.tag', 'Hello world in parent')]);
22
$childSpan = $tracer->start('Child Operation Name', [new StringTag('test.tag', 'Hello world in child')]);
23
$tracer->finish($childSpan);
0 commit comments