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;








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:



enter image description here



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?










share|improve this question




























    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:



    enter image description here



    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?










    share|improve this question
























      0












      0








      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:



      enter image description here



      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?










      share|improve this question














      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:



      enter image description here



      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 14:10









      WiingaardWiingaard

      1,4642 gold badges16 silver badges39 bronze badges




      1,4642 gold badges16 silver badges39 bronze badges






















          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
          );



          );













          draft saved

          draft discarded


















          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.



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript