Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/auxmoney/opentracingbundle-jaeger
Provides a tracer implementation for Jaeger for the auxmoney/OpentracingBundle-core
https://github.com/auxmoney/opentracingbundle-jaeger
auxmoney distributed-tracing jaeger opentracing opentracing-bundle symfony symfony-bundle
Last synced: 2 days ago
JSON representation
Provides a tracer implementation for Jaeger for the auxmoney/OpentracingBundle-core
- Host: GitHub
- URL: https://github.com/auxmoney/opentracingbundle-jaeger
- Owner: auxmoney
- License: mit
- Created: 2020-01-06T14:51:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T20:08:18.000Z (9 days ago)
- Last Synced: 2024-11-13T22:12:16.164Z (2 days ago)
- Topics: auxmoney, distributed-tracing, jaeger, opentracing, opentracing-bundle, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 288 KB
- Stars: 7
- Watchers: 5
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# auxmoney OpentracingBundle - Jaeger
[![test](https://github.com/auxmoney/OpentracingBundle-Jaeger/workflows/test/badge.svg)](https://github.com/auxmoney/OpentracingBundle-Jaeger/actions?query=workflow%3Atest)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/auxmoney/OpentracingBundle-Jaeger)](https://github.com/auxmoney/OpentracingBundle-Jaeger/releases/latest)
![Codacy Badge](https://api.codacy.com/project/badge/Grade/dd11fb9bdbe54affb1946a03af5f432a)
![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/auxmoney/OpentracingBundle-Jaeger)
![Scrutinizer code quality (GitHub/Bitbucket)](https://img.shields.io/scrutinizer/quality/g/auxmoney/OpentracingBundle-Jaeger)
![GitHub](https://img.shields.io/github/license/auxmoney/OpentracingBundle-Jaeger)This symfony bundle provides a tracer implementation for [Jaeger](https://www.jaegertracing.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` | `Jaeger\Sampler\ConstSampler` | 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: `Jaeger\Sampler\ConstSampler`
* possible values: `'true'` / `'false'`
* Description: you activate or deactivate the tracing* probabilistic sampler
* Class: `Jaeger\Sampler\ProbabilisticSampler`
* possible values: Rate min `'0.00'` - max `'1.00'`
* Description: you activate the tracing for the given rate