For the complete documentation index, see llms.txt. This page is also available as Markdown.

Enable or Disable Auto UI Trace

API reference for enabling or disabling automatic UI trace capture in Luciq. UI hangs are collected out of the box and can be disabled.

Luciq collects UI hangs out of the box. You can disable/enable this using the following API.

APM.setAutoUITraceEnabled(true)
LCQAPM.UIHangsEnabled = NO;
APM.setUIHangEnabled(boolean disabled);
APM.setUIHangEnabled(boolean disabled)
// Enable
APM.setAutoUITraceEnabled(true);

// Disable
APM.setAutoUITraceEnabled(false);
// Enable Auto UI Traces
APM.setAutoUITraceEnabled(true);

// Disable Auto UI Traces
APM.setAutoUITraceEnabled(false);

Last updated