See the cache work

  1. Sign up
  2. Claim address
  3. Connect warehouse
  4. Point a tool
  5. First rule
  6. Verify
What you'll do

Cache hits show up in three places. Any one confirms the walkthrough.

Once a rule is matching real traffic, the cache is visible in the App's dashboard and traffic page (universal), in your BI tool's execution-time drop (most tools, easy to eyeball), and in X-Airbrx-* response headers (engineers and DBeaver users who want HTTP detail). The dashboard is the lead — open it, watch the cache-hit-rate tile climb as you re-run queries.

In the App dashboard

Open the tenant page in the App. The dashboard has cache-hit-rate, bytes-served-from-cache, and warehouse-compute-saved tiles — re-run the SELECT from step 5 a few times and watch them tick up. The traffic page logs every statement with its cache outcome (HIT, MISS, BYPASS), the rule that matched it, the user who ran it, and timing. Click any statement for the full set of X-Airbrx-* headers.

The dashboard is the universal verification surface — works for every BI tool, requires no driver inspection, and lives where the FinOps and ops audiences already look.

In your BI tool

Most BI tools surface execution time per query. Run the SELECT from step 5 twice in your tool; the second run should land noticeably faster — the Gateway returns from cache rather than waking the warehouse. Tableau, Power BI, and Excel show this implicitly via refresh time; DBeaver and Python clients show it explicitly in the session log alongside the response headers.

In response headers

The Gateway adds X-Airbrx-* headers to every response — the most concrete proof, if your client surfaces them. The headers a cache hit carries:

# A cache hit, as seen in your client's session log X-Airbrx-Cache-Status: HIT X-Airbrx-Cache-Rule: first-cache-rule X-Airbrx-Tenant: your-slug X-Airbrx-Execution-Time: 8ms X-Airbrx-Warehouse-Execution-Time: 1234

What each one tells you:

Where to see the headers:

For the full reference of every X-Airbrx-* header — what each one means and when it appears — see Response headers.

If something doesn't add up

You're done. What's next?

That's the first hour. The Gateway is in front of your warehouse, a rule is matching real traffic, and you can see the cache working in response headers. From here:

Welcome aboard.

The walkthrough is complete. The Gateway is your now. The compute bill is going to look different next month.

Open the App
Step 5 — First rule