ujwaldhakal/symfony-opentracing-messenger

Bundle that helps to trace symfony messenger's async messages

v1.0.1 2022-08-11 13:37 UTC

This package is auto-updated.

Last update: 2024-04-11 17:37:13 UTC


README

This bundle helps you to setup opentracing on the Symfony Messenger out of the box without any configs. This is just an addon for the OpentracingBundleCore.

If you are using Messenger for async messages no matter how many async messages you have inside message, it will trace them by modifying your messages before it gets processed. The way it modifies them is by using leveraging the Symfony Messenger Events.

Installation

  • Run composer require ujwaldhakal/symfony-opentracing-messenger
  • Import bundle on your bundles.php with
  Auxmoney\OpentracingBundle\OpentracingBundle::class => ['all' => true],
  Ujwaldhakal\OpentracingMessengerBundle\MessengerBundle::class => ['all' => true]

For more info visit:

https://github.com/auxmoney/OpentracingBundle-core