fix: Filter more events for google analytics. (#3557)

pull/3559/head jitsi-meet_3384
bgrozev 6 years ago committed by GitHub
parent cd77a9176c
commit 62b6737a3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      analytics-ga.js

@ -126,9 +126,10 @@
return;
}
// The e2e rtt are not useful in GA, and there are too many of them.
// We just filter them out for now.
if (event.action === 'e2e_rtt') {
// The e2e rtt, rtp stats and rtt by region stats are not useful in GA,
// and there are too many of them. We just filter them out for now.
if (event.action === 'e2e_rtt' || event.action === 'rtp.stats'
|| event.action === 'rtt.by.region') {
return;
}

Loading…
Cancel
Save