Flows & UI Traces
Track user flows and UI traces in KMP APMKmp.
Flows (user journeys)
APMKmp.startFlow("checkout")
// ... user goes through checkout ...
APMKmp.endFlow("checkout")APMKmp.setFlowAttribute("checkout", "payment_method", "card")
APMKmp.setFlowAttribute("checkout", "discount", null) // remove attributeUI traces
APMKmp.startUITrace("SettingsScreen")
// ... screen is visible ...
APMKmp.endUITrace()Automatic UI traces
APMKmp.setAutoUITraceEnabled(true)Last updated