漏斗中的数据不正确

问题描述:

我记录了两组用户的两个不同事件。它们在远程配置中指定(50%的随机percintile)。这些事件不会出现在一个用户身上,而是在漏斗中重叠。什么可以做错了?漏斗中的数据不正确

OnCompleteListener<Void> onCompleteListener = new OnCompleteListener<Void>() { 
      @Override 
      public void onComplete(@NonNull Task<Void> task) { 
       if (task.isSuccessful()) { 
        mFirebaseRemoteConfig.activateFetched(); 



        Boolean shuldShowPremiumDialoginNotification = mFirebaseRemoteConfig.getBoolean("premiumDialogInNotifications"); 
        KLog.e(shuldShowPremiumDialoginNotification); 
        SharedPrefsManager.setShowPremiumDialogInNotifiactions(SettingsActivity.this, shuldShowPremiumDialoginNotification); 
        if (shuldShowPremiumDialoginNotification) 
         mFirebaseAnalytics.logEvent("premium_dialog_show_T", null); 
        else 
         mFirebaseAnalytics.logEvent("premium_dialog_show_F", null); 


       } else KLog.e("remote config error " + task.getException().getMessage()); 
      } 
     }; 

     if (mFirebaseRemoteConfig.getInfo().getConfigSettings().isDeveloperModeEnabled()) { 
      // This forces Remote Config to fetch from server every time. 
      mFirebaseRemoteConfig.fetch(0).addOnCompleteListener(this, onCompleteListener); 
     } else { 
      mFirebaseRemoteConfig.fetch().addOnCompleteListener(this, onCompleteListener); 
     } 
} 

enter image description here

没有做错什么 - 我想了解最重要的是在火力地堡分析认为渠道是“开放”的渠道,而不是封闭的漏斗。这意味着他们真的不是“有多少人遇到了事件A,然后遇到了事件B”的各种图表 - 他们更像是“让我们一起展示事件A和事件B”的各种报告。

所以这就是你在这里看到的。大约745名用户看到了dialog_T事件,并且776名用户说出了dialog_F事件,这与您使用远程配置设置期望看到的几乎完全相符。