Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/auxmoney/opentracingbundle-zipkin
Provides a tracer implementation for Zipkin for the auxmoney/OpentracingBundle-core
https://github.com/auxmoney/opentracingbundle-zipkin
auxmoney distributed-tracing opentracing opentracing-bundle symfony symfony-bundle zipkin
Last synced: 3 months ago
JSON representation
Provides a tracer implementation for Zipkin for the auxmoney/OpentracingBundle-core
- Host: GitHub
- URL: https://github.com/auxmoney/opentracingbundle-zipkin
- Owner: auxmoney
- License: mit
- Created: 2020-01-06T14:51:54.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-04T15:09:46.000Z (over 1 year ago)
- Last Synced: 2024-10-03T07:05:49.615Z (3 months ago)
- Topics: auxmoney, distributed-tracing, opentracing, opentracing-bundle, symfony, symfony-bundle, zipkin
- Language: PHP
- Homepage:
- Size: 218 KB
- Stars: 4
- Watchers: 5
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# 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://img.shields.io/github/v/release/auxmoney/OpentracingBundle-Zipkin)](https://github.com/auxmoney/OpentracingBundle-Zipkin/releases/latest)
![Codacy Badge](https://api.codacy.com/project/badge/Grade/626c5a0a955b4318bb9a4f82bd2ee7a2)
![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/auxmoney/OpentracingBundle-Zipkin)
![Scrutinizer code quality (GitHub/Bitbucket)](https://img.shields.io/scrutinizer/quality/g/auxmoney/OpentracingBundle-Zipkin)
![GitHub](https://img.shields.io/github/license/auxmoney/OpentracingBundle-Zipkin)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
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` | `Zipkin\Samplers\BinarySampler` | class of the using sampler, see [existing samplers](#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: `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