Answer the question
In order to leave comments, you need to log in
How to read events in google analytics for android app?
I track user actions and settings in my app with the following code (runs when the user clicks a specific button):
// настройки
if (user_name != "") has_name = 1;
...
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_name", (long) has_name).build());
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_address", (long) has_address).build());
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_operator", (long) has_operator).build());
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_passport", (long) has_passport).build());
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_phonenumber", (long) has_phonenumber).build());
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_mo_consent", (long) has_mo_consent).build());
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_other_docs", (long) has_other_docs).build());
easyTracker.send(MapBuilder.createEvent("ui_action", "send_mail", "has_screenshot", (long) has_screenshot).build());
// действие
easyTracker.send(MapBuilder.createEvent("ui_action", "complaint_region", email_to, null).build());
Answer the question
In order to leave comments, you need to log in
I don't understand how you linked complaint_region to the number of labels for send_mail.
The structure of events in GA is: Category - Action - Label.
1. Category is the same for all events - it is "ui_action"
2. Action is of two types: send_mail and complaint_region. Trying to find the relationship between them (76 * 8), you multiply cows with elephants.
3. Label: here you should have 8 labels for "send_mail" and 1 label for "complaint_region" (based on the code snippet above).
If you have an event with Action="complaint_region" sent to GA every time users clicked on the button, then they clicked it 76 times.
On the other hand, you and other events are executed on average 130 times. Which, as I understand it, are also sent every time the button is pressed. Therefore, it is strange that "complain_region" is much less than 130. Perhaps your "complaint_region" does not always have time to go to GA.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question