diff --git a/tools/winscope/src/DataView.vue b/tools/winscope/src/DataView.vue index 52508245c..a353e039d 100644 --- a/tools/winscope/src/DataView.vue +++ b/tools/winscope/src/DataView.vue @@ -160,7 +160,6 @@ export default { // Pass click event to parent, so that click event handler can be attached // to component. this.$emit('click', e); - this.newEventOccurred(e.toString()); }, /** Filter data view files by current show settings */ updateShowFileTypes() { diff --git a/tools/winscope/src/Overlay.vue b/tools/winscope/src/Overlay.vue index a75f4ec3b..829cff4df 100644 --- a/tools/winscope/src/Overlay.vue +++ b/tools/winscope/src/Overlay.vue @@ -686,7 +686,7 @@ export default { navigationStyleFilter = (f) => f.type === fileType; } - + this.changedNavigationStyle(this.navigationStyle); this.$store.commit('setNavigationFilesFilter', navigationStyleFilter); }, updateVideoOverlayWidth(width) { diff --git a/tools/winscope/src/main.js b/tools/winscope/src/main.js index 703cced9c..10dd44354 100644 --- a/tools/winscope/src/main.js +++ b/tools/winscope/src/main.js @@ -411,6 +411,13 @@ Vue.mixin({ 'value': field, }); }, + changedNavigationStyle(field) { + this.$gtag.event("Timeline navigation changed", { + 'event_category': "Timeline Navigation", + 'event_label': "Winscope Interactions", + 'value': field, + }); + }, } });