2021-09-08 19:26:54 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-09-08 19:26:54 +02:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-09-08 19:26:54 +02:00
|
|
|
*/
|
|
|
|
|
2023-01-12 14:25:14 +01:00
|
|
|
import { IContent, MatrixClient } from "matrix-js-sdk/src/matrix";
|
2021-09-08 19:26:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Decorates the given event content object with the "send start time". The
|
|
|
|
* object will be modified in-place.
|
|
|
|
* @param {object} content The event content.
|
|
|
|
*/
|
2023-01-12 14:25:14 +01:00
|
|
|
export function decorateStartSendingTime(content: IContent): void {
|
2022-12-12 12:24:14 +01:00
|
|
|
content["io.element.performance_metrics"] = {
|
2021-09-08 19:26:54 +02:00
|
|
|
sendStartTs: Date.now(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when an event decorated with `decorateStartSendingTime()` has been sent
|
|
|
|
* by the server (the client now knows the event ID).
|
|
|
|
* @param {MatrixClient} client The client to send as.
|
|
|
|
* @param {string} inRoomId The room ID where the original event was sent.
|
|
|
|
* @param {string} forEventId The event ID for the decorated event.
|
|
|
|
*/
|
2023-01-12 14:25:14 +01:00
|
|
|
export function sendRoundTripMetric(client: MatrixClient, inRoomId: string, forEventId: string): void {
|
2021-09-08 19:26:54 +02:00
|
|
|
// noinspection JSIgnoredPromiseFromCall
|
2022-12-12 12:24:14 +01:00
|
|
|
client.sendEvent(inRoomId, "io.element.performance_metric", {
|
2021-09-08 19:31:37 +02:00
|
|
|
"io.element.performance_metrics": {
|
|
|
|
forEventId: forEventId,
|
2021-09-08 19:26:54 +02:00
|
|
|
responseTs: Date.now(),
|
2022-12-12 12:24:14 +01:00
|
|
|
kind: "send_time",
|
2021-09-08 19:31:37 +02:00
|
|
|
},
|
2021-09-08 19:26:54 +02:00
|
|
|
});
|
|
|
|
}
|