Skip to main content
Version: 6.0.0

Filter repeating issues

SDK will not send repeating/ duplicate issues to Finotes dashboard if they occur within 6 hours in the same session.

Finotes reports all issues to the dashboard, in some cases same issue may reoccur in the same device.

Finotes has an inbuilt mechanism to filter out repeated/duplicate issues from being reported (from the same device in a single session) for a set number of hours using issueRaiseFrequencyInHours property of @Observe annotation in Application class.

Default value is 6 hours. Minimum supported is 1 hour up to maximum of 24 hours.

Application Class:


@Observe(issueRaiseFrequencyInHours = 10)
public class BlogApp extends Application {
@Override
public void onCreate() {
super.onCreate();
Fn.init(this);
}
}