Add displayname on call spans

This commit is contained in:
David Baker
2023-04-03 14:31:17 +01:00
parent e870188be3
commit 3a7983d2de
+3
View File
@@ -170,6 +170,9 @@ export class OTelGroupCallMembership {
// XXX: anonymity
span.setAttribute("matrix.call.target.userId", userId);
span.setAttribute("matrix.call.target.deviceId", deviceId);
const displayName = this.groupCall.room.getMember(userId)?.name;
span.setAttribute("matrix.call.target.displayName", displayName);
this.callsByCallId.set(call.callId, {
userId,
deviceId,