我正在使用gtag.js。我发送此邮件没有问题:
gtag('event', 'aaa', {
'event_category': 'bbb',
'event_label': error
});
,然后在https://analytics.google.com的“实时”>“事件”面板下进行检查。 但是发送后我不知道在哪里检查:
gtag('event', 'exception', {
'description': error,
'fatal': true // set to true if the error is fatal
});
gtag('event', 'timing_complete', {
'name': 'load',
'value': Math.round(performance.now()),
'event_category': 'JS Dependencies'
});
这两个特殊事件记录在这里:https://developers.google.com/analytics/devguides/collection/gtagjs/exceptions。但是没有UI可以检查它们吗?