campaign_details event is not logged in firebase
Asked Answered
A

1

3

I have created a campaign link and when i give

Bundle data = new Bundle(); data.putString(FirebaseAnalytics.Param.SOURCE,Applink.getQueryParameter("utm_source")); data.putString(FirebaseAnalytics.Param.MEDIUM,Applink.getQueryParameter("utm_medium")); data.putString(FirebaseAnalytics.Param.CAMPAIGN,Applink.getQueryParameter("utm_campaign"));

    mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.CAMPAIGN_DETAILS, data);

But the event is not logged in firebase. have anyone faced similar issues? could you please let me know what im missing?

Amathiste answered 8/6, 2021 at 6:47 Comment(4)
As per Firebase documentation, logging of Analytics takes upto 24hours to show up on firebase console. So if you have logged an event, you would have to wait for few hours to show up on the console. #40814065Preachy
@KathanPatel, But Still i have not received in firebase its been a week since im trying this....Amathiste
if i give the event_name anything else other than campaign_details it is logged in firebase. but if i give the event name as campaign_details it is not loggedAmathiste
I also have this problem. do you solved this problem?Tybi
P
2

Seems that campaign_details events are only visible if you search through Big Query. You can easily retrieve those events with the following query:

select * from `[tablename]` where event_name = 'campaign_details'
Peppers answered 7/9, 2021 at 10:10 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.