To see client-side analytic data in the MobileFirst Analytics Console, send analytics to the MobileFirst Analytics Server by calling the send method.
outputclass="prettyprint">[NSTimer scheduledTimerWithTimeInterval:60
target:[WLAnalytics sharedInstance]
selector:@selector(send)
userInfo:nil
repeats:YES];
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
WLAnalytics.send();
}
}, 0, 60000);
setInterval(function() {
WL.Analytics.send();
}, 60000);
setInterval(function() {
ibmmfpfanalytics.send();
}, 60000);