埋点统计系统架构图

 

埋点统计系统 

 一、背景

             统计系统页面的点击情况,并生成数据分析报表。

 

 二、架构图


埋点统计系统架构图_第1张图片

 

 

三、实现

3.1  页面埋点 

10001 10002 10003
20001 20002 20003
30001 30002 30003
40001 40002 40003
50001 50002 50003

 

点击数据结构:

埋点统计系统架构图_第2张图片
  

 

3.2  配置client请求地址 


 

3.3  收集点击数据


		
		

 

ArrayList loanInfos = TapperUtil.getLoanInfo(data);
for(LoanInfoDO loanInfoDO:loanInfos) {
    tapperClient.addLoanInfo(loanInfoDO);
}

 

3.4  查看点击数据



 

你可能感兴趣的:(分布式应用架构)