https://github.com/ipunkt/rancherize-jaeger
jaeger-agent sidekick for rancherize
https://github.com/ipunkt/rancherize-jaeger
Last synced: 11 months ago
JSON representation
jaeger-agent sidekick for rancherize
- Host: GitHub
- URL: https://github.com/ipunkt/rancherize-jaeger
- Owner: ipunkt
- License: mit
- Created: 2019-05-15T07:32:04.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-22T14:04:07.000Z (almost 7 years ago)
- Last Synced: 2024-04-18T11:59:34.753Z (about 2 years ago)
- Language: PHP
- Size: 13.7 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rancherize-jaeger
jaeger-agent sidekick for rancherize
## Config
### Main Service
When using this plugin a jaeger agent can be added to the project by setting `jaeger.host` to the address and port of
the jaeger collector
#### Example
```json
{
"default":{
"jaeger":{
"host":"jaeger.host.somewhere.com:14250"
}
}
}
```
### PHP Command Service
Adding the same jaeger agent for a php-command service can be done by adding `jaeger.host` to the configuration of the
php command in question
#### Example
```json
{
"default":{
"php-commands":{
"rabbitmq-listen":{
"jaeger":{
"host":"jaeger.host.somewhere.com:14250"
}
}
}
}
}
```