This extension is meant to be used with jcchavezs/zipkin-instrumentation-symfony
- Include the bundle
ZipkinDoctrine\Integrations\Symfony\Bundle
in theAppKernel.php
bundles' list. - Declare
ZipkinDoctrine\Connection
as thewrapper_class
in the connection, as described in DoctrineBundle documentation - Declare the options in the parameter
doctrine.tracer.zipkin.options
as a key value map:['affected_rows': true]
- Voilá
- Go to
config/bundles.php
and and make sure both bundles are included:
ZipkinBundle\ZipkinBundle::class => ['all' => true],
ZipkinDoctrine\Integrations\Symfony\Bundle::class => ['all' => true]
- Declare
ZipkinDoctrine\Connection
as thewrapper_class
in the connection, as described in DoctrineBundle documentation - Declare the options in the parameter
doctrine.tracer.zipkin.options
as a key value map:['affected_rows': true]
- Voilá