Flurry Analytics, Basic Analytics Issues

后端 未结 6 1847
攒了一身酷
攒了一身酷 2021-01-05 02:41

Does anyone have any experience using the basic analytics services with the Flurry Analytics SDK?

I have two applications which I am testing this out with. Both are

相关标签:
6条回答
  • 2021-01-05 03:17

    It may sometime take Flurry long before it updates new data initially. When I first set up my app with Flurry, it took hours before my first test data was reflected.

    I'd suggest to wait a bit longer, and if there is still no data, contact the Flurry support.

    Actually you can contact them right now and ask for the issues, theres no harm in that. But I guess they are only going to ask you to wait.

    0 讨论(0)
  • 2021-01-05 03:24

    I am Using flurry in my game. Just wait for 3 or 4 days and you will see the data.

    0 讨论(0)
  • 2021-01-05 03:28

    I had a same problem too and solved it by replacing all white space characters to underscores in the names of the events and they are appeared after about 5 min.

    Incorrect log

    [FlurryAnalytics logEvent:@"EVENT NAME"];

    Correct log

    [FlurryAnalytics logEvent:@"EVENT_NAME"];

    This naming agreement is not mentioned in the FlurryAnalytics' documentation but it worked for me.

    0 讨论(0)
  • 2021-01-05 03:32

    From my experience it appears Flurry updates at least twice a day. I'm used to Google Analytics updating alot quicker, but I can't complain to much. Flurry is pretty decent as far as Analytics goes.

    0 讨论(0)
  • 2021-01-05 03:35

    I faced the same problem when testing Flurry using the simulator or the device from Xcode. The problem was that I was killing the app from Xcode right after testing and sending events, and no data was sent to Flurry server.

    Data is only sent to the server when the application goes into background, so press the home button and wait 10 seconds before killing your app.

    You can also enable debug log and see when data is sent and if response is correct (http code=200):

    [Flurry setDebugLogEnabled:YES];
    

    It can take a couple of hours for data being visible in Flurry reports.

    Hope it helps.

    0 讨论(0)
  • 2021-01-05 03:36

    I had the same issue and contacted support. They said:

    Although the Flurry SDK sends data from the devices to our servers on an almost real-time basis, there could be a delay in reporting ranging from 5 min to 7 hours depending upon the network traffic and the demand on our servers.

    Event logs show up within 5-7 minutes of occurrence on the device.

    Other metrics could take up to 6-7 hours to get processed and show up.

    Hope this clarifies.

    After 5 hours, it's reflected and working fine.

    0 讨论(0)
提交回复
热议问题