2

두 그룹의 사용자에 대해 두 개의 서로 다른 이벤트를 기록합니다. 그들은 원격 설정 (랜덤 퍼시 틴티의 50 %)으로 지정됩니다. 이벤트는 한 사용자에게는 표시되지 않지만 깔때기에서는 중복됩니다. bo는 무엇을 잘못 할 수 있습니까?유입 경로의 데이터가 올바르지 않습니다.

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

답변

2

아무것도 잘못입니다 - 내가 이해하는 중요한 것은 그 깔때기 및 폐쇄하지 퍼널을 "열기"하는 중포 기지 분석 유입 경로라고 생각합니다. "얼마나 많은 사람들이 이벤트 A와 마주 치고 이벤트 B"와 같은 종류의 그래프를 만났는지, 실제로는 "이벤트 A와 이벤트 B가 나란히 표시됩니다"와 같은 종류의 그래프가 발생한다는 것을 의미합니다.

그래서 여기에있는 내용을 참조하십시오. 약 745 명의 사용자가 dialog_T 이벤트를 보았고 776 명의 사용자가 dialog_F 이벤트를 말합니다.이 이벤트는 Remote Config 설정에서 볼 수있는 것과 정확히 일치합니다.