diff options
author | Marcel <MTRNord@users.noreply.github.com> | 2023-10-23 13:55:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-23 11:55:36 +0000 |
commit | 3bcb6a059f4cd1014b6a90550e009860089a13cc (patch) | |
tree | 2e55cd65a015d97e01019005f7faa634ef2d7135 | |
parent | Force TLS certificate verification in registration script. (#16530) (diff) | |
download | synapse-3bcb6a059f4cd1014b6a90550e009860089a13cc.tar.xz |
Mention how to redirect the Jaeger traces to a specific Jaeger instance (#16531)
-rw-r--r-- | changelog.d/16531.doc | 1 | ||||
-rw-r--r-- | docs/opentracing.md | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/changelog.d/16531.doc b/changelog.d/16531.doc new file mode 100644 index 0000000000..0932d1abf1 --- /dev/null +++ b/changelog.d/16531.doc @@ -0,0 +1 @@ +Add a sentence to the opentracing docs on how you can have jaeger in a different place than synapse. diff --git a/docs/opentracing.md b/docs/opentracing.md index abb94b565f..bf48874160 100644 --- a/docs/opentracing.md +++ b/docs/opentracing.md @@ -51,6 +51,11 @@ docker run -d --name jaeger \ jaegertracing/all-in-one:1 ``` +By default, Synapse will publish traces to Jaeger on localhost. +If Jaeger is hosted elsewhere, point Synapse to the correct host by setting +`opentracing.jaeger_config.local_agent.reporting_host` [in the Synapse configuration](usage/configuration/config_documentation.md#opentracing-1) +or by setting the `JAEGER_AGENT_HOST` environment variable to the desired address. + Latest documentation is probably at https://www.jaegertracing.io/docs/latest/getting-started. |