ujwaldhakal / messenger
帮助追踪symfony messenger的异步消息的包
v1.0.1
2022-08-11 13:37 UTC
Requires
- php: >=7.0
- auxmoney/opentracing-bundle-jaeger: ^v1.2.1
Requires (Dev)
- friendsofphp/php-cs-fixer: v2.19.0
- phpunit/phpunit: ^9.5
- symfony/messenger: ^6.1
This package is auto-updated.
Last update: 2024-09-11 18:15:52 UTC
README
此包可以帮助您在Symfony Messenger上快速设置opentracing,无需任何配置。它仅仅是OpentracingBundleCore的一个附加组件。
如果您使用Messenger进行异步消息,无论消息内部有多少异步消息,它都会在处理之前修改您的消息来追踪它们。它修改消息的方式是利用Symfony Messenger Events。
安装
- 运行
composer require ujwaldhakal/symfony-opentracing-messenger
- 在您的
bundles.php
中导入包
Auxmoney\OpentracingBundle\OpentracingBundle::class => ['all' => true],
Ujwaldhakal\OpentracingMessengerBundle\MessengerBundle::class => ['all' => true]
更多信息请访问