使用 analytics.js 时,我可以通过这种方式成功跟踪包括自定义维度的事件(如文档中所述):
ga('send', 'event', 'category', 'action', {
'metric18': 8000,
'dimension6': 'crocodile'
});
但是,在使用 Measurement Protocol(即 HTTP 请求)时,我似乎无法找到将自定义维度和指标包含到事件跟踪中的方法,因为我在文档中没有找到任何参考。
这是我迄今为止尝试过的(基于文档中的示例)。在这两种情况下,事件实际上已被跟踪,但没有关联任何自定义维度或指标。
http://www.google-analytics.com/collect?
v=1 // Version.
&tid=UA-XXXX-Y // Tracking ID / Property ID.
&cid=555 // Anonymous Client ID.
&t=event // Event hit type
&ec=video // Event Category. Required.
&ea=play // Event Action. Required.
&metric18=8000
&dimension6=crocodile
和
http://www.google-analytics.com/collect?
v=1 // Version.
&tid=UA-XXXX-Y // Tracking ID / Property ID.
&cid=555 // Anonymous Client ID.
&t=event // Event hit type
&ec=video // Event Category. Required.
&ea=play // Event Action. Required.
&el={"metric18":8000,"dimension6":"crocodile"}