feat(prosody): Trace rayo dial IQs in mod_trace. - #17734
Open
aaronkvanmeerten wants to merge 2 commits into
Open
feat(prosody): Trace rayo dial IQs in mod_trace.#17734aaronkvanmeerten wants to merge 2 commits into
aaronkvanmeerten wants to merge 2 commits into
Conversation
Records a rayo.dial hop span for dial IQs passing through prosody and rewrites the trace context in-flight so the receiving service (jigasi) parents under the prosody span, mirroring the existing colibri conference-modify handling. The trace context is accepted in two forms: a <traceparent/> child element (as on colibri IQs), or an X-Traceparent rayo header holding a W3C trace context value, which is the form that survives jigasi's RayoIqProvider parsing.
jitsi-ci Bot
pushed a commit
to jitsi/jitsi-pr-tests-pages
that referenced
this pull request
Aug 19, 2026
damencho
approved these changes
Aug 19, 2026
Member
|
I'm adding tests, please don't merge yet |
jitsi-ci Bot
pushed a commit
to jitsi/jitsi-pr-tests-pages
that referenced
this pull request
Aug 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Extends
mod_trace.luato record arayo.dialhop span for rayo dial IQs passing through prosody, mirroring the existing colibriconference-modifyhandling: the span is created from the incoming trace context and the context is rewritten in-flight so the receiving service (jigasi) parents under the prosody span.The trace context is accepted in two forms:
<traceparent/>child element of<dial>, as used on colibri IQs, andX-Traceparentrayo header holding a W3C trace context value (00-<trace-id>-<parent-id>-<flags>), which is the form that survivesRayoIqProviderparsing in jigasi (it only parsesheaderchildren).Companion to jitsi/jigasi#646, which adds tracing of dial-in/dial-out call setup to jigasi.