Google analitycs 是否允许将自定义轨道 ID 添加到事件中?

Does Google analitycs allow to add custom track id to event?

在我的 Javascript 代码中,我有跟踪自定义事件的功能:

ga('send', 'event', 'Open track', 'test');

现在,有没有办法添加另一个轨道 ID,因此当此自定义事件轨道触发时,我可以将此数据发送到例如:

UA-434341791-2 ?

谢谢你的建议。

也许您可以为此使用事件值? (它是一个整数)

https://developers.google.com/analytics/devguides/collection/analyticsjs/events

ga('send', {
  'hitType': 'event',          // Required.
  'eventCategory': 'Open track',   // Required.
  'eventAction': 'click',      // Required.
  'eventLabel': 'test',
  'eventValue': 4343417912
});