Google analytics GA4跟踪总收入

Google analytics GA4跟踪总收入,google-analytics,google-analytics-4,Google Analytics,Google Analytics 4,我试图用新的GA4追踪收入,但我很难理解如何做到这一点。 有人能帮忙吗? 谢谢大家! 标记中的“值”参数填充报告中的“收入”指标。例如,如果您从本例()上载购买事件: 然后,GA4将显示总收入为21.09美元 在货币化概述报告中,GA4将显示这21.09美元专门归类为电子商务收入 如果我修改原始购买事件(例如根据其他发送参数更改事件名称),它将被识别为转换,但不会填充“总收入”列,为什么? gtag('event', 'purchase', { affiliation: 'Google

我试图用新的GA4追踪收入,但我很难理解如何做到这一点。

有人能帮忙吗? 谢谢大家!

标记中的“值”参数填充报告中的“收入”指标。例如,如果您从本例()上载购买事件:

然后,GA4将显示总收入为21.09美元

在货币化概述报告中,GA4将显示这21.09美元专门归类为电子商务收入


如果我修改原始购买事件(例如根据其他发送参数更改事件名称),它将被识别为转换,但不会填充“总收入”列,为什么?
gtag('event', 'purchase', {
  affiliation: 'Google Store',
  coupon: 'SUMMER_FUN',
  currency: 'USD',
  items: [{
    item_id: 'SKU_12345',
    item_name: 'jeggings',
    coupon: 'SUMMER_FUN',
    discount: 2.22,
    affiliation: 'Google Store',
    item_brand: 'Gucci',
    item_category: 'pants',
    item_variant: 'black',
    price: 9.99,
    currency: 'USD',
    quantity: 1
  }, {
    item_id: 'SKU_12346',
    item_name: 'jeggings',
    coupon: 'SUMMER_FUN',
    discount: 2.22,
    affiliation: 'Google Store',
    item_brand: 'Gucci',
    item_category: 'pants',
    item_variant: 'gray',
    price: 9.99,
    currency: 'USD',
    quantity: 1
  }],
  transaction_id: 'T_12345',
  shipping: 3.33,
  value: 21.09,
  tax: 2.22
})