I have created a Hitbuilder
instance and passed HashMap<String, String> params = new HashMap<String, String>
params info. into the HitBuilder
but could not find any info. of the Keys and values of HashMap on Dashboard.
Although I can see screenName, category, eventName and label.
Below is the snippet I'm doing.
Tracker t = getTracker(TrackerName.APP_TRACKER);
t.setScreenName(screenName);
t.send(new HitBuilders.EventBuilder()
.setCategory(category)
.setAction(action)
.setLabel(label)
.setValue(value)
.setAll(params) // cannot find params information
.build());
Also passing like below also don't show me the values:
Tracker t = getTracker(TrackerName.APP_TRACKER);
t.setScreenName(screenName);
t.send(new HitBuilders.EventBuilder()
.setCategory(category)
.setAction(action)
.setLabel(label)
.setValue(value)
.set("param1", "test1")
.set("param2", "test2")
.setAll(params)
.build());
Any answer or comment is highly appreciated.