ipunkt/rancherize-jaeger

Rancherize plugin to add a jaeger-agent sidekick

1.2.0 2019-08-22 14:03 UTC

This package is auto-updated.

Last update: 2024-04-22 23:58:49 UTC


README

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

{
	"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

{
	"default":{
		"php-commands":{
			"rabbitmq-listen":{
				"jaeger":{
					"host":"jaeger.host.somewhere.com:14250"
				}
			}
		}
	}
}