Where to see user events

66 views
Skip to first unread message

pramod...@indiainfoline.com

unread,
May 24, 2016, 5:19:36 AM5/24/16
to CleverTap Support
Hi I want to see user event which I had captured. Suppose I am capturing user name and I am sending it like following:

HashMap<String, Object> extraData = new HashMap<String, Object>();
extraData
.put("User Name", txtUsername.getText().toString().trim());
Utils.sendEventToCleverTap(this, "Login Button Click", extraData);

and in sendEventToCleverTap method I had written code as:

public static void sendEventToCleverTap(Context context, String eventName, HashMap<String, Object> eventProperties) {
   
   
if (BuildConfig.DEBUG) {
       
CleverTapAPI.setDebugLevel(1);
   
} else {
       
CleverTapAPI.setDebugLevel(0);
   
}
   
CleverTapAPI cleverTap;
   
try {
        cleverTap
= CleverTapAPI.getInstance(context);
        cleverTap
.event.push(eventName, eventProperties);
   
} catch (CleverTapMetaDataNotFoundException e) {
        e
.printStackTrace();
   
} catch (CleverTapPermissionsNotSatisfied e) {
        e
.printStackTrace();
   
}
}

But In events and properties tab (under setting link) I am getting only property name as "Üser Name " but not getting property value. What's wrong in my code. Thanks


Support

unread,
May 24, 2016, 12:40:44 PM5/24/16
to CleverTap Support
Hi Pramod,

Thanks for writing in - there is nothing wrong with your code.

In order to see the event property value for a given event property, please find the user profile of the user who performed that event on the dashboard ("Today" dashboard --> "Activity Stream") and view their activity. You should be able to see the event property values for the event properties of their event here.

To clarify, the "Events and Properties" tab under Settings is just a general comprehensive list to show the various events and event properties you are tracking for your app. It doesn't make sense for the event properties to have specific values in this section, as values are dependent on what specific users do.

Hope this clarifies your question.

Thanks,
Support.
Reply all
Reply to author
Forward
0 new messages