Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google analytics show real time screen as not set for users from android

I'm using Google analytics and I notices that some of my active screens names are (not set) while watching real time report (see image)

enter image description here

The Google analytics configuration is set to automatically collect activity information.

Anyone have a clue why it happen or how can I debug this?

like image 627
Rotem Avatar asked Dec 29 '14 10:12

Rotem


People also ask

Why is Google Analytics not showing real-time data?

If you don't see any data at all in your Real-Time reports, the most likely cause is either in the Google Analytics tracking code or GA/GTM misconfiguration. You should check your tags in Google Tag Manager, Google Analytics filters, and also use browser extensions for debugging.

How do I get desktop vs mobile in Google Analytics?

To see what percentage of your users are on mobile devices open up the Audience tab, and select Mobile and Overview. On the overview page, you should see all your normal Google Analytics data segmented between Desktops, Mobile and Tablets.

How long does it take for Google Analytics to show real-time data?

You'll need to wait 24-48 hours after setting up your Google Analytics property to see your data. While you're waiting, you can verify your tracking code is doing its job by checking your real-time reports and debug view or looking at your website source code.


Video Answer


1 Answers

The problem was that I sent events via broadcast receiver that was receiving push in the background. The events were count as a new session (thus appearing as a user in real time) and because the session wasn't related to any activity the name as "Not set".

The solution that I did is to create a new property in Google Analytics and using different tracker for these events.

like image 183
Rotem Avatar answered Sep 30 '22 04:09

Rotem