自定义添加额外的数据 TAG¶
初始化 RUM 后,使用 setGlobalContextProperty(key:string,value:any)
API 向从应用程序收集的所有 RUM 事件添加额外的 TAG。
添加 TAG¶
window.DATAFLUX_RUM && window.DATAFLUX_RUM.setGlobalContextProperty('<CONTEXT_KEY>', '<CONTEXT_VALUE>');
// Code example
window.DATAFLUX_RUM && window.DATAFLUX_RUM.setGlobalContextProperty('isvip', 'xxxx');
window.DATAFLUX_RUM && window.DATAFLUX_RUM.setGlobalContextProperty('activity', {
hasPaid: true,
amount: 23.42
});
DATAFLUX_RUM.onReady(function() {
DATAFLUX_RUM.setGlobalContextProperty('<CONTEXT_KEY>', '<CONTEXT_VALUE>');
})
// Code example
DATAFLUX_RUM.onReady(function() {
DATAFLUX_RUM.setGlobalContextProperty('isvip', 'xxxx');
})
DATAFLUX_RUM.onReady(function() {
DATAFLUX_RUM.setGlobalContextProperty('activity', {
hasPaid: true,
amount: 23.42
});
})