Tradeoffs: Guardrail Coverage vs Experiment Velocity
The Math of Coverage
Each guardrail has false positive probability p. With n independent guardrails, probability of at least one false positive is 1 - (1-p)^n. At p=5% with 10 guardrails, 40% of experiments get blocked by noise alone. At 20 guardrails, it rises to 64%.
This creates a ceiling on useful guardrail count. Beyond 10-15 guardrails, diminishing returns: each additional guardrail blocks more valid experiments than it catches harmful ones.
Velocity Impact
Each blocked experiment requires investigation (hours to days). False positives consume engineering time and erode trust. Teams with high false positive rates start ignoring guardrails or finding workarounds, defeating the purpose.
Optimizing the Trade-off
Strategies: (1) correlate guardrails and remove redundant ones, (2) use hierarchical testing (broad guardrail first, then specific), (3) tier by experiment risk, (4) set aside velocity budget for low-risk experiments with minimal guardrails.