diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-02-03 12:29:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 12:29:16 +0000 |
commit | 964f5b9324f7d18c70a45e6d4049eba879778043 (patch) | |
tree | 57d34fdb32bb0e2be71490495fafa41c329284b7 /changelog.d | |
parent | Fixes for opentracing scopes (#11869) (diff) | |
download | synapse-964f5b9324f7d18c70a45e6d4049eba879778043.tar.xz |
Improve opentracing for federation requests (#11870)
The idea here is to set the parent span for incoming federation requests to the *outgoing* span on the other end. That means that you can see (most of) the full end-to-end flow when you have a process that includes federation requests. However, in order not to lose information, we still want a link to the `incoming-federation-request` span from the servlet, so we have to create another span to do exactly that.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/11870.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/11870.misc b/changelog.d/11870.misc new file mode 100644 index 0000000000..2cb0efdb45 --- /dev/null +++ b/changelog.d/11870.misc @@ -0,0 +1 @@ +Improve opentracing for incoming federation requests. |