
Get predefined telemetry sensitivity presets
bid_telemetry_presets.RdReturns predefined threshold configurations for telemetry analysis with different
sensitivity levels. Use these presets with bid_ingest_telemetry() to easily
adjust how aggressively the analysis identifies UX friction points.
Usage
bid_telemetry_presets(preset = c("moderate", "strict", "relaxed"))Value
Named list of threshold parameters suitable for passing to
bid_ingest_telemetry() thresholds parameter.
Examples
# Get strict sensitivity thresholds
strict_thresholds <- bid_telemetry_presets("strict")
# Use with telemetry analysis
if (FALSE) { # \dontrun{
issues <- bid_ingest_telemetry(
"telemetry.sqlite",
thresholds = bid_telemetry_presets("strict")
)
} # }
# Compare different presets
moderate <- bid_telemetry_presets("moderate")
relaxed <- bid_telemetry_presets("relaxed")