UPT: Modify configmap to include jaeger sampler host and jaeger sampler port
This commit is contained in:
parent
31ffad8fa1
commit
d468cd5ec5
1 changed files with 11 additions and 0 deletions
|
@ -124,6 +124,8 @@ The following table shows a configuration option's name, type, and the default v
|
||||||
|[jaeger-service-name](#jaeger-service-name)|string|"nginx"|
|
|[jaeger-service-name](#jaeger-service-name)|string|"nginx"|
|
||||||
|[jaeger-sampler-type](#jaeger-sampler-type)|string|"const"|
|
|[jaeger-sampler-type](#jaeger-sampler-type)|string|"const"|
|
||||||
|[jaeger-sampler-param](#jaeger-sampler-param)|string|"1"|
|
|[jaeger-sampler-param](#jaeger-sampler-param)|string|"1"|
|
||||||
|
|[jaeger-sampler-host](#jaeger-sampler-host)|string|"http://127.0.0.1"|
|
||||||
|
|[jaeger-sampler-port](#jaeger-sampler-port)|int|5778|
|
||||||
|[main-snippet](#main-snippet)|string|""|
|
|[main-snippet](#main-snippet)|string|""|
|
||||||
|[http-snippet](#http-snippet)|string|""|
|
|[http-snippet](#http-snippet)|string|""|
|
||||||
|[server-snippet](#server-snippet)|string|""|
|
|[server-snippet](#server-snippet)|string|""|
|
||||||
|
@ -735,6 +737,15 @@ Specifies the sampler to be used when sampling traces. The available samplers ar
|
||||||
Specifies the argument to be passed to the sampler constructor. Must be a number.
|
Specifies the argument to be passed to the sampler constructor. Must be a number.
|
||||||
For const this should be 0 to never sample and 1 to always sample. _**default:**_ 1
|
For const this should be 0 to never sample and 1 to always sample. _**default:**_ 1
|
||||||
|
|
||||||
|
## jaeger-sampler-host
|
||||||
|
|
||||||
|
Specifies the custom remote sampler host to be passed to the sampler constructor. Must be a valid URL.
|
||||||
|
Leave blank to use default value (localhost). _**default:**_ http://127.0.0.1
|
||||||
|
|
||||||
|
## jaeger-sampler-port
|
||||||
|
|
||||||
|
Specifies the custom remote sampler port to be passed to the sampler constructor. Must be a number. _**default:**_ 5778
|
||||||
|
|
||||||
## main-snippet
|
## main-snippet
|
||||||
|
|
||||||
Adds custom configuration to the main section of the nginx configuration.
|
Adds custom configuration to the main section of the nginx configuration.
|
||||||
|
|
Loading…
Reference in a new issue