PHPackages                             auxmoney/opentracing-bundle-zipkin - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. auxmoney/opentracing-bundle-zipkin

ActiveSymfony-bundle[HTTP &amp; Networking](/categories/http)

auxmoney/opentracing-bundle-zipkin
==================================

Symfony Opentracing bundle extension for Zipkin tracers

v1.3.0(3y ago)310.2k4[2 PRs](https://github.com/auxmoney/OpentracingBundle-Zipkin/pulls)MITPHPPHP ^8.0

Since Jan 16Pushed 1y ago4 watchersCompare

[ Source](https://github.com/auxmoney/OpentracingBundle-Zipkin)[ Packagist](https://packagist.org/packages/auxmoney/opentracing-bundle-zipkin)[ RSS](/packages/auxmoney-opentracing-bundle-zipkin/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (14)Versions (21)Used By (0)

auxmoney OpentracingBundle - Zipkin
===================================

[](#auxmoney-opentracingbundle---zipkin)

[![test](https://github.com/auxmoney/OpentracingBundle-Zipkin/workflows/test/badge.svg)](https://github.com/auxmoney/OpentracingBundle-Zipkin/actions?query=workflow%3Atest)[![GitHub release (latest SemVer)](https://camo.githubusercontent.com/8dc3dbdcab8a481c451436e768e4b52322d3a797141678f3d9e17b22422fa1ab/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f6175786d6f6e65792f4f70656e74726163696e6742756e646c652d5a69706b696e)](https://github.com/auxmoney/OpentracingBundle-Zipkin/releases/latest)[![Codacy Badge](https://camo.githubusercontent.com/2fff90eb5f7aa692a9d1b1898de05c05167f97fdb7a3151076d8f8281413efb7/68747470733a2f2f6170692e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f3632366335613061393535623433313862623961346638326264326565376132)](https://camo.githubusercontent.com/2fff90eb5f7aa692a9d1b1898de05c05167f97fdb7a3151076d8f8281413efb7/68747470733a2f2f6170692e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f3632366335613061393535623433313862623961346638326264326565376132)[![Code Climate maintainability](https://camo.githubusercontent.com/4b5cfe3ee71e9965b07d0863a399ef79b6eb5fdc97134ab3c68188da4a53d2f3/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6d61696e7461696e6162696c6974792f6175786d6f6e65792f4f70656e74726163696e6742756e646c652d5a69706b696e)](https://camo.githubusercontent.com/4b5cfe3ee71e9965b07d0863a399ef79b6eb5fdc97134ab3c68188da4a53d2f3/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6d61696e7461696e6162696c6974792f6175786d6f6e65792f4f70656e74726163696e6742756e646c652d5a69706b696e)[![Scrutinizer code quality (GitHub/Bitbucket)](https://camo.githubusercontent.com/c14d77415ab15757426a1933de78e8e10dcb3726c63904ed405119b1e0e0077a/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f7175616c6974792f672f6175786d6f6e65792f4f70656e74726163696e6742756e646c652d5a69706b696e)](https://camo.githubusercontent.com/c14d77415ab15757426a1933de78e8e10dcb3726c63904ed405119b1e0e0077a/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f7175616c6974792f672f6175786d6f6e65792f4f70656e74726163696e6742756e646c652d5a69706b696e)[![GitHub](https://camo.githubusercontent.com/285af6516457048035c2e0821f8a31e9294ee2ce5ba740c5a1f21fce089a1a68/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6175786d6f6e65792f4f70656e74726163696e6742756e646c652d5a69706b696e)](https://camo.githubusercontent.com/285af6516457048035c2e0821f8a31e9294ee2ce5ba740c5a1f21fce089a1a68/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6175786d6f6e65792f4f70656e74726163696e6742756e646c652d5a69706b696e)

This symfony bundle provides a tracer implementation for [Zipkin](https://zipkin.io/) for the [auxmoney OpentracingBundle](https://github.com/auxmoney/OpentracingBundle-core).

Please have a look at [the central documentation](https://github.com/auxmoney/OpentracingBundle-core) for installation and usage instructions.

Configuration
-------------

[](#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 variablecontainer parametertypedefaultdescriptionAUXMONEY\_OPENTRACING\_SAMPLER\_CLASSauxmoney\_opentracing.sampler.class`string``Zipkin\Samplers\BinarySampler`class of the using sampler, see [existing samplers](#existing-samplers)AUXMONEY\_OPENTRACING\_SAMPLER\_VALUEauxmoney\_opentracing.sampler.value`string``'true'`must be a JSON decodable string, for the configuration of the sampler### Existing Samplers

[](#existing-samplers)

- constant sampler

    - Class: `Zipkin\Samplers\BinarySampler`
    - possible values: `'true'` / `'false'`
    - Description: you activate or deactivate the tracing
- percentage sampler

    - Class: `Zipkin\Samplers\PercentageSampler`
    - possible values: Rate min `'0.00'` - max `'1.00'`
    - Description: you activate the tracing for the given rate

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance30

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 58.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~70 days

Recently: every ~101 days

Total

18

Last Release

1104d ago

Major Versions

v0.5.3 → v1.0.02021-11-16

PHP version history (4 changes)v0.3.0PHP ^7.1.33

v0.5.3PHP ^7.3.27

v1.1.0PHP ^7.4|^8.0

v1.2.3PHP ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/58fb41ad66c6b45096cad21d54aa1aacabcb9eedc8974664e1e6776327662816?d=identicon)[cawolf](/maintainers/cawolf)

![](https://www.gravatar.com/avatar/8c532f151bbf9c52f35ecbb5d1678d0216bf112c211468e91001b29a09d9e733?d=identicon)[guckykv](/maintainers/guckykv)

---

Top Contributors

[![cawolf](https://avatars.githubusercontent.com/u/1932623?v=4)](https://github.com/cawolf "cawolf (28 commits)")[![semantic-release-bot](https://avatars.githubusercontent.com/u/32174276?v=4)](https://github.com/semantic-release-bot "semantic-release-bot (14 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![auxTomala](https://avatars.githubusercontent.com/u/221138940?v=4)](https://github.com/auxTomala "auxTomala (1 commits)")[![Basster](https://avatars.githubusercontent.com/u/1265783?v=4)](https://github.com/Basster "Basster (1 commits)")[![filisko](https://avatars.githubusercontent.com/u/8798694?v=4)](https://github.com/filisko "filisko (1 commits)")

---

Tags

auxmoneydistributed-tracingopentracingopentracing-bundlesymfonysymfony-bundlezipkinsymfonypsr-18Symfony Bundleopentracingzipkindistributed-tracingauxmoneyopentracing-bundle

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/auxmoney-opentracing-bundle-zipkin/health.svg)

```
[![Health](https://phpackages.com/badges/auxmoney-opentracing-bundle-zipkin/health.svg)](https://phpackages.com/packages/auxmoney-opentracing-bundle-zipkin)
```

###  Alternatives

[auxmoney/opentracing-bundle-core

Symfony Opentracing bundle to easily enable distributed tracing

25904.4k9](/packages/auxmoney-opentracing-bundle-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
