Welcome to Apache Solr Jaeger Tracer Configurator ======== Apache Solr Jaeger Tracer Configurator (solr-jaegertracer) provides a way for you to expose Solr's tracing to Jaeger. # Setup Jaeger Tracer Configurator Note that all library of solr-jaegertracer must be included in the classpath of all nodes then Jaeger tracer can be setup in `solr.xml` like this: ``` localhost 5775 true 1000 10000 ``` List of parameters for JaegerTracerConfigurator include: |Parameter|Type|Required|Default|Description| |---------|----|--------|-------|-----------| |agentHost|string|Yes||The host of Jaeger backend| |agentPort|int|Yes||The port of Jaeger port| |logsSpans|bool|No|true|Whether the tracer should also log the spans| |flushInterval|int|No|5000|The tracer's flush interval (ms)| |maxQueueSize|int|No|10000|The tracer's maximum queue size| Other parameters which are not listed above can be configured using System Properties or Environment Variables. The full list are listed at [Jaeger-README](https://github.com/jaegertracing/jaeger-client-java/blob/master/jaeger-core/README.md). By default the sampling rate is 0.1%, this value can be changed by updating key `samplePercentage` of cluster properties. I.e: `/admin/collections?action=CLUSTERPROP&name=propertyName&samplePercentage=100`.