Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.rockxy.io/llms.txt

Use this file to discover all available pages before exploring further.

Block and Allow Lists

Block and allow lists solve a different problem from replay or rewriting. They help you control which traffic matters in the first place.

Block List

Use Block List when you want matching requests to fail immediately instead of reaching the server. Good candidates:
  • analytics endpoints,
  • ad and tracking SDK traffic,
  • known-noisy background polling,
  • third-party calls that distract from your main debugging session.

Allow List

Use Allow List when you want to restrict attention to a specific subset of traffic. This is particularly helpful when:
  • one app emits too much unrelated traffic,
  • you want to focus on one service during capture,
  • or you are validating that only a specific endpoint family is active.

When to choose which

  • Block List removes traffic by making it fail.
  • Allow List narrows the active traffic set to what you intentionally permit.

Filters and Search

Use filtering for visibility; use lists for actual traffic control.

Traffic Rules

Return to the broader rules overview.