Replacing your BI dashboard with a question box
Dashboards answer the questions you had last quarter. Most real questions show up the moment you're looking at one.
Ryan Chandler
3 min read
Every BI tool starts the same way. Someone asks a question, an analyst builds a chart, and that chart becomes a permanent fixture on a dashboard. Multiply that by two years and you've got forty tiles nobody fully trusts, half of them quietly broken since the last schema migration.
The problem isn't the charts. It's that a dashboard is a cache of yesterday's questions, and the questions never stop changing.
The follow-up problem
Watch what actually happens when someone opens a dashboard. They look at "revenue by region," and within seconds they're asking something the tile can't answer:
- Okay, but which products inside North America?
- Is that growth, or just one big customer?
- What did it look like before the pricing change?
In a traditional tool, every one of those follow-ups is a ticket. With Dronk it's the next sentence:
You: Revenue by region this quarter
Dronk: table + chart
You: Break North America down by product
Dronk: drills in, keeps the same time window
The dashboard was never the unit of value. The answer was, and answers are conversational.
What replaces the tiles
We're not anti-chart. A good visualization is still the fastest way to read a result, so Dronk turns answers into the shape that fits: a table, a single stat, a bar, line, or area chart, or a scatter plot. You can pin any of those to a dashboard when it's worth keeping around, and dashboards refresh on a schedule so the saved numbers don't go stale.
The difference is what happens around the chart:
| Traditional BI | Dronk |
|---|---|
| Pre-built tiles, fixed forever | Answers generated per question |
| Follow-ups become tickets | Follow-ups are the next message |
| "Who owns this metric?" | The SQL is right there, every time |
| Locked inside the tool | Share a dashboard, or lock it behind a password |
That third row matters more than it looks. Every Dronk answer ships with the exact query that produced it:
SELECT p.name AS product, SUM(o.amount) / 100.0 AS revenue
FROM orders o
JOIN products p ON p.id = o.product_id
WHERE o.region = 'North America'
AND o.created_at >= date_trunc('quarter', now())
GROUP BY p.name
ORDER BY revenue DESC;
A metric you can't inspect is a metric you're choosing to trust on faith.
You don't have to rip anything out
The honest pitch isn't "delete your dashboards tomorrow." It's that the next time someone is about to file a ticket for "just one more chart," they can ask instead, and get an answer, the SQL behind it, and the freedom to keep digging.
Dashboards freeze a question in time. Dronk lets you keep asking.