Show custom event parameters in Google Analytics for FirebaseCustom events in Firebase analytics consoleHow to move from Google-Analytics to Firebase-Analytics?Parameters for the Firebase event VIEW_ITEM isn't displayed (iOS)Google Analytics not working with GTM and Firebase iOSHow do I integrate Google Analytics if my project is linked to Firebase?Why are the custom events of Firebase analytics not shown on dashboard?Firebase Analytics not showing screen names and eventsIs it possible to add custom parameters to Firebase Analytics automatically tracked screen_view events?How to send custom parameter along with reserve event to firebase analyticsiOS: Issues with switching from Google Analytics to Firebase Analytics
13th chords on guitar
Why wasn't EBCDIC designed with contiguous alphanumeric characters?
Most elegant way to write a one-shot 'if'
Why was Mal so quick to drop Bester in favour of Kaylee?
Script executes loop only once
How could a satellite follow earth around the sun while staying outside of earth's orbit?
Single level file directory
How to describe POV characters?
Do home values typically rise and fall at a consistent percent?
Do the 26 richest billionaires own as much wealth as the poorest 3.8 billion people?
What is "oversubscription" in Networking?
Reusable spacecraft: why still have fairings detach, instead of open/close?
I hit a pipe with a mower and now it won't turn
How receiver knows the exact frequency in the channel to "listen to"?
Sacrifice blocking creature before damage is dealt no longer working (MtG Arena)?
What game is this character in the Pixels movie from?
What is this mount with two buttons on side of Vivitar 75-205mm lens?
What kind of jet plane is this?
Why is Japan trying to have a better relationship with Iran?
Is there a legal way for US presidents to extend their terms beyond two terms of four years?
Copy group of files (Filename*) to backup (Filename*.bak)
Different budgets within roommate group
Are the requirements of a Horn of Valhalla cumulative?
Word ending in "-ine" for rat-like
Show custom event parameters in Google Analytics for Firebase
Custom events in Firebase analytics consoleHow to move from Google-Analytics to Firebase-Analytics?Parameters for the Firebase event VIEW_ITEM isn't displayed (iOS)Google Analytics not working with GTM and Firebase iOSHow do I integrate Google Analytics if my project is linked to Firebase?Why are the custom events of Firebase analytics not shown on dashboard?Firebase Analytics not showing screen names and eventsIs it possible to add custom parameters to Firebase Analytics automatically tracked screen_view events?How to send custom parameter along with reserve event to firebase analyticsiOS: Issues with switching from Google Analytics to Firebase Analytics
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm using multiple features of Firebase for an iOS in Swift. I'm having problems seeing the results of some of my analytics events. I have a Store View in the app where the users and choose to buy the premium version of the app while they still are on a free trial. But this Store view is also shown as a paywall when their free trial has expired.
So I track an analytics event when this view is shown. I call the event "did_show_chop_store"
and I include a custom event parameter called "is_paywall"
, which can either be "true"
or "false"
(as String
). Here is how I track it:
func trackStore(as paywall: Bool)
let params: [String:Any] = ["is_paywall": paywall.asString()]
Analytics.logEvent("did_show_chop_store", parameters: params)
where .asString()
is an extension to Bool
that converts the value to the above mentioned strings.
When adding Custom parameter reporting as described here (added as a "Text" parameter), I'm expecting to see the distribution between "true"
and "false"
in the small "is_paywall"
chart under the specific event in thee Google Analytics for Firebase console, but in stead I see no data:
I also don't see any data about "is_paywall"
when exporting as CSV.
What am I doing wrong? or is this whole Google Analytics for Firebase just much buggy?
ios swift firebase firebase-analytics
add a comment |
I'm using multiple features of Firebase for an iOS in Swift. I'm having problems seeing the results of some of my analytics events. I have a Store View in the app where the users and choose to buy the premium version of the app while they still are on a free trial. But this Store view is also shown as a paywall when their free trial has expired.
So I track an analytics event when this view is shown. I call the event "did_show_chop_store"
and I include a custom event parameter called "is_paywall"
, which can either be "true"
or "false"
(as String
). Here is how I track it:
func trackStore(as paywall: Bool)
let params: [String:Any] = ["is_paywall": paywall.asString()]
Analytics.logEvent("did_show_chop_store", parameters: params)
where .asString()
is an extension to Bool
that converts the value to the above mentioned strings.
When adding Custom parameter reporting as described here (added as a "Text" parameter), I'm expecting to see the distribution between "true"
and "false"
in the small "is_paywall"
chart under the specific event in thee Google Analytics for Firebase console, but in stead I see no data:
I also don't see any data about "is_paywall"
when exporting as CSV.
What am I doing wrong? or is this whole Google Analytics for Firebase just much buggy?
ios swift firebase firebase-analytics
add a comment |
I'm using multiple features of Firebase for an iOS in Swift. I'm having problems seeing the results of some of my analytics events. I have a Store View in the app where the users and choose to buy the premium version of the app while they still are on a free trial. But this Store view is also shown as a paywall when their free trial has expired.
So I track an analytics event when this view is shown. I call the event "did_show_chop_store"
and I include a custom event parameter called "is_paywall"
, which can either be "true"
or "false"
(as String
). Here is how I track it:
func trackStore(as paywall: Bool)
let params: [String:Any] = ["is_paywall": paywall.asString()]
Analytics.logEvent("did_show_chop_store", parameters: params)
where .asString()
is an extension to Bool
that converts the value to the above mentioned strings.
When adding Custom parameter reporting as described here (added as a "Text" parameter), I'm expecting to see the distribution between "true"
and "false"
in the small "is_paywall"
chart under the specific event in thee Google Analytics for Firebase console, but in stead I see no data:
I also don't see any data about "is_paywall"
when exporting as CSV.
What am I doing wrong? or is this whole Google Analytics for Firebase just much buggy?
ios swift firebase firebase-analytics
I'm using multiple features of Firebase for an iOS in Swift. I'm having problems seeing the results of some of my analytics events. I have a Store View in the app where the users and choose to buy the premium version of the app while they still are on a free trial. But this Store view is also shown as a paywall when their free trial has expired.
So I track an analytics event when this view is shown. I call the event "did_show_chop_store"
and I include a custom event parameter called "is_paywall"
, which can either be "true"
or "false"
(as String
). Here is how I track it:
func trackStore(as paywall: Bool)
let params: [String:Any] = ["is_paywall": paywall.asString()]
Analytics.logEvent("did_show_chop_store", parameters: params)
where .asString()
is an extension to Bool
that converts the value to the above mentioned strings.
When adding Custom parameter reporting as described here (added as a "Text" parameter), I'm expecting to see the distribution between "true"
and "false"
in the small "is_paywall"
chart under the specific event in thee Google Analytics for Firebase console, but in stead I see no data:
I also don't see any data about "is_paywall"
when exporting as CSV.
What am I doing wrong? or is this whole Google Analytics for Firebase just much buggy?
ios swift firebase firebase-analytics
ios swift firebase firebase-analytics
asked Mar 25 at 14:10
WiingaardWiingaard
1,4642 gold badges16 silver badges39 bronze badges
1,4642 gold badges16 silver badges39 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339742%2fshow-custom-event-parameters-in-google-analytics-for-firebase%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339742%2fshow-custom-event-parameters-in-google-analytics-for-firebase%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown