auxmoney/opentracing-bundle-jaeger
Symfony Opentracing bundle extension for Jaeger tracers
Package info
github.com/auxmoney/OpentracingBundle-Jaeger
Type:symfony-bundle
pkg:composer/auxmoney/opentracing-bundle-jaeger
Requires
- php: ^8.0
- ext-json: *
- auxmoney/jaeger-php: ^3.0
- auxmoney/opentracing-bundle-core: ^1.3
- opentracing/opentracing: ^1.0.1
Requires (Dev)
- mtdowling/jmespath.php: ^2.6
- php-coveralls/php-coveralls: ^2.5
- phpmd/phpmd: ^2.12
- phpspec/prophecy-phpunit: ^2.0
- phpstan/phpstan: ^1.4
- phpunit/phpunit: ^9.5
- roave/security-advisories: dev-latest
- squizlabs/php_codesniffer: ^3.6
- symfony/filesystem: *
- symfony/process: *
- symfony/yaml: *
Suggests
None
Provides
None
Conflicts
None
Replaces
- auxmoney/opentracing-bundle-tracer-implementation: *
MIT 7dadc6ae20ad6e47014ebde567c51773f8edb4d9
symfonysymfony-bundlejaegeropentracingpsr-18distributed-tracingauxmoneyopentracing-bundle
This package is auto-updated.
Last update: 2026-06-07 00:03:41 UTC
README
👁 test
👁 GitHub release (latest SemVer)
👁 Codacy Badge
👁 Code Climate maintainability
👁 Scrutinizer code quality (GitHub/Bitbucket)
👁 GitHub
This symfony bundle provides a tracer implementation for Jaeger for the auxmoney OpentracingBundle.
Please have a look at the central documentation for installation and usage instructions.
Configuration
You can optionally configure environment variables, however, the default configuration will sample every request. If you cannot change environment variables in your project, you can alternatively overwrite the container parameters directly.
| environment variable | container parameter | type | default | description |
|---|---|---|---|---|
| AUXMONEY_OPENTRACING_SAMPLER_CLASS | auxmoney_opentracing.sampler.class | string |
Jaeger\Sampler\ConstSampler |
class of the using sampler, see existing samplers |
| AUXMONEY_OPENTRACING_SAMPLER_VALUE | auxmoney_opentracing.sampler.value | string |
'true' |
must be a JSON decodable string, for the configuration of the sampler |
Existing Samplers
-
constant sampler
- Class:
Jaeger\Sampler\ConstSampler - possible values:
'true'/'false' - Description: you activate or deactivate the tracing
- Class:
-
probabilistic sampler
- Class:
Jaeger\Sampler\ProbabilisticSampler - possible values: Rate min
'0.00'- max'1.00' - Description: you activate the tracing for the given rate
- Class:
