Track UISIs in bulk
Piwik supports sending an event value, which we can use to indicate cardinality of UISIs to be tracked instead of tracking them individually. This means we can track them at a lower frequency of (fairly arbitrary) 60s.
This commit is contained in:
parent
48f03bfd86
commit
01dd387970
4 changed files with 21 additions and 47 deletions
|
@ -1304,9 +1304,9 @@ export default React.createClass({
|
|||
}
|
||||
});
|
||||
|
||||
const dft = new DecryptionFailureTracker((failure) => {
|
||||
const dft = new DecryptionFailureTracker((total) => {
|
||||
// TODO: Pass reason for failure as third argument to trackEvent
|
||||
Analytics.trackEvent('E2E', 'Decryption failure');
|
||||
Analytics.trackEvent('E2E', 'Decryption failure', null, total);
|
||||
});
|
||||
|
||||
// Shelved for later date when we have time to think about persisting history of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue