Add jitter and packet loss info in summary report (#1006)

* stats: add jitter and packet loss
This commit is contained in:
Enrico Schwendig 2023-04-18 15:20:06 +02:00 committed by GitHub
parent c31185ffef
commit 3da4b4eeef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 4 deletions

View File

@ -53,7 +53,7 @@
"i18next-browser-languagedetector": "^6.1.8", "i18next-browser-languagedetector": "^6.1.8",
"i18next-http-backend": "^1.4.4", "i18next-http-backend": "^1.4.4",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#a0bcb5777fe94e71a29d16e22450ebd1c577e81b", "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#8c30a3b0df05d708a9212a94689c1648bfc6cbf8",
"matrix-widget-api": "^1.3.1", "matrix-widget-api": "^1.3.1",
"mermaid": "^8.13.8", "mermaid": "^8.13.8",
"normalize.css": "^8.0.1", "normalize.css": "^8.0.1",

View File

@ -112,7 +112,9 @@ export class PosthogSpanProcessor implements SpanProcessor {
// matrix.stats.summary // matrix.stats.summary
// matrix.stats.summary.percentageReceivedAudioMedia: 0.75 // matrix.stats.summary.percentageReceivedAudioMedia: 0.75
// matrix.stats.summary.percentageReceivedMedia: 1 // matrix.stats.summary.percentageReceivedMedia: 1
// matrix.stats.summary.percentageReceivedVideoMedia; 0.75 // matrix.stats.summary.percentageReceivedVideoMedia: 0.75
// matrix.stats.summary.maxJitter: 100
// matrix.stats.summary.maxPacketLoss: 20
const event = span.events.find((e) => e.name === "matrix.stats.summary"); const event = span.events.find((e) => e.name === "matrix.stats.summary");
if (event !== undefined) { if (event !== undefined) {
const attributes = event.attributes; const attributes = event.attributes;
@ -120,6 +122,8 @@ export class PosthogSpanProcessor implements SpanProcessor {
const mediaReceived = `${attributes["matrix.stats.summary.percentageReceivedMedia"]}`; const mediaReceived = `${attributes["matrix.stats.summary.percentageReceivedMedia"]}`;
const videoReceived = `${attributes["matrix.stats.summary.percentageReceivedVideoMedia"]}`; const videoReceived = `${attributes["matrix.stats.summary.percentageReceivedVideoMedia"]}`;
const audioReceived = `${attributes["matrix.stats.summary.percentageReceivedAudioMedia"]}`; const audioReceived = `${attributes["matrix.stats.summary.percentageReceivedAudioMedia"]}`;
const maxJitter = `${attributes["matrix.stats.summary.maxJitter"]}`;
const maxPacketLoss = `${attributes["matrix.stats.summary.maxPacketLoss"]}`;
PosthogAnalytics.instance.trackEvent( PosthogAnalytics.instance.trackEvent(
{ {
eventName: "MediaReceived", eventName: "MediaReceived",
@ -127,6 +131,8 @@ export class PosthogSpanProcessor implements SpanProcessor {
mediaReceived: mediaReceived, mediaReceived: mediaReceived,
audioReceived: audioReceived, audioReceived: audioReceived,
videoReceived: videoReceived, videoReceived: videoReceived,
maxJitter: maxJitter,
maxPacketLoss: maxPacketLoss,
}, },
// Send instantly because the window might be closing // Send instantly because the window might be closing
{ send_instantly: true } { send_instantly: true }

View File

@ -10550,9 +10550,9 @@ matrix-events-sdk@0.0.1:
resolved "https://registry.yarnpkg.com/matrix-events-sdk/-/matrix-events-sdk-0.0.1.tgz#c8c38911e2cb29023b0bbac8d6f32e0de2c957dd" resolved "https://registry.yarnpkg.com/matrix-events-sdk/-/matrix-events-sdk-0.0.1.tgz#c8c38911e2cb29023b0bbac8d6f32e0de2c957dd"
integrity sha512-1QEOsXO+bhyCroIe2/A5OwaxHvBm7EsSQ46DEDn8RBIfQwN5HWBpFvyWWR4QY0KHPPnnJdI99wgRiAl7Ad5qaA== integrity sha512-1QEOsXO+bhyCroIe2/A5OwaxHvBm7EsSQ46DEDn8RBIfQwN5HWBpFvyWWR4QY0KHPPnnJdI99wgRiAl7Ad5qaA==
"matrix-js-sdk@github:matrix-org/matrix-js-sdk#a0bcb5777fe94e71a29d16e22450ebd1c577e81b": "matrix-js-sdk@github:matrix-org/matrix-js-sdk#8c30a3b0df05d708a9212a94689c1648bfc6cbf8":
version "24.1.0" version "24.1.0"
resolved "https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/a0bcb5777fe94e71a29d16e22450ebd1c577e81b" resolved "https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/8c30a3b0df05d708a9212a94689c1648bfc6cbf8"
dependencies: dependencies:
"@babel/runtime" "^7.12.5" "@babel/runtime" "^7.12.5"
"@matrix-org/matrix-sdk-crypto-js" "^0.1.0-alpha.6" "@matrix-org/matrix-sdk-crypto-js" "^0.1.0-alpha.6"