Merge pull request #6884 from timmysilv/tracing-endpoint
jaeger-endpoint feature for non-agent trace collectors
This commit is contained in:
commit
c90d33c313
7 changed files with 51 additions and 2 deletions
|
|
@ -132,6 +132,7 @@ The following table shows a configuration option's name, type, and the default v
|
|||
|[zipkin-sample-rate](#zipkin-sample-rate)|float|1.0|
|
||||
|[jaeger-collector-host](#jaeger-collector-host)|string|""|
|
||||
|[jaeger-collector-port](#jaeger-collector-port)|int|6831|
|
||||
|[jaeger-endpoint](#jaeger-endpoint)|string|""|
|
||||
|[jaeger-service-name](#jaeger-service-name)|string|"nginx"|
|
||||
|[jaeger-sampler-type](#jaeger-sampler-type)|string|"const"|
|
||||
|[jaeger-sampler-param](#jaeger-sampler-param)|string|"1"|
|
||||
|
|
@ -845,6 +846,10 @@ Specifies the host to use when uploading traces. It must be a valid URL.
|
|||
|
||||
Specifies the port to use when uploading traces. _**default:**_ 6831
|
||||
|
||||
## jaeger-endpoint
|
||||
|
||||
Specifies the endpoint to use when uploading traces to a collector. This takes priority over `jaeger-collector-host` if both are specified.
|
||||
|
||||
## jaeger-service-name
|
||||
|
||||
Specifies the service name to use for any traces created. _**default:**_ nginx
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ jaeger-collector-host: jaeger-agent.default.svc.cluster.local
|
|||
datadog-collector-host: datadog-agent.default.svc.cluster.local
|
||||
```
|
||||
NOTE: While the option is called `jaeger-collector-host`, you will need to point this to a `jaeger-agent`, and not the `jaeger-collector` component.
|
||||
Alternatively, you can set `jaeger-endpoint` and specify the full endpoint for uploading traces. This will use TCP and should be used for a collector rather than an agent.
|
||||
|
||||
Next you will need to deploy a distributed tracing system which uses OpenTracing.
|
||||
[Zipkin](https://github.com/openzipkin/zipkin) and
|
||||
|
|
@ -57,6 +58,9 @@ zipkin-sample-rate
|
|||
# specifies the port to use when uploading traces, Default: 6831
|
||||
jaeger-collector-port
|
||||
|
||||
# specifies the endpoint to use when uploading traces to a collector instead of an agent
|
||||
jaeger-endpoint
|
||||
|
||||
# specifies the service name to use for any traces created, Default: nginx
|
||||
jaeger-service-name
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue