Learn R Programming

bidux (version 0.3.3)

bid_telemetry_presets: Get predefined telemetry sensitivity presets

Description

Returns 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.

Arguments

preset

Character string specifying the sensitivity level:

strict

Detects even minor issues - use for critical applications or new dashboards

moderate

Balanced default - appropriate for most applications (default)

relaxed

Only detects major issues - use for mature, stable dashboards

Examples

Run this code
# Get strict sensitivity thresholds
strict_thresholds <- bid_telemetry_presets("strict")

# Use with telemetry analysis
if (FALSE) {
issues <- bid_ingest_telemetry(
  "telemetry.sqlite",
  thresholds = bid_telemetry_presets("strict")
)
}

# Compare different presets
moderate <- bid_telemetry_presets("moderate")
relaxed <- bid_telemetry_presets("relaxed")

Run the code above in your browser using DataLab