A
A
and7ey2014-04-12 15:57:34
Android
and7ey, 2014-04-12 15:57:34

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

When I look at the result in Google Analytics, I see the following -
EVENT ACTION: send_mail » EVENT CATEGORY: ui_action
Y5CGD.png
EVENT CATEGORY: ui_action » EVENT ACTION: complaint_region
gBoXm.png
I can't figure out if the total number of complaints_region events multiplied by 8 (the number of labels for send_mail) ) should not be equal to the total number of send_mail events? Those. why is 76*8 not equal to 1038?
And, the most important question - how many times did all users click the button? 76?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Ruslan, 2014-04-13
@and7ey

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 question

Ask a Question

731 491 924 answers to any question