Hello GCP community,
I use BigQuery as a data warehouse and Looker Studio as a reporting tool for showing dashboards. One of the dashboards is very complex, but I managed to make it using a custom SQL query and parameter field.
It is unclear to me how all this work behind the scene. Mostly I am concerned with how much each dashboard is going to cost. Unfortunately, I couldn't find answers in the documentation (neither in BigQuery nor Looker Studio).
The question that I have are:
I would really appreciate answers or leads where I could learn this.
Thank you for your help
Solved! Go to Solution.
Hi @josipsha,
Welcome back to Google Cloud Community.
Here are a few responses to your queries:
Here are some documentations that might help you:
BigQuery as a data warehouse
https://cloud.google.com/bigquery?_ga=2.144136053.-1150969476.1678208220#section-3
Looker Studio as a reporting tool
https://cloud.google.com/looker-studio?_ga=2.179270500.-1150969476.1678208220#section-4
https://cloud.google.com/bigquery/docs/visualize-looker-studio?_ga=2.144136053.-1150969476.167820822...
https://cloud.google.com/bigquery/docs/bi-engine-looker-studio?_ga=2.144136053.-1150969476.167820822...
https://cloud.google.com/blog/products/data-analytics/looker-and-data-studio-integrate-for-best-of-b...
Hi @josipsha,
Welcome back to Google Cloud Community.
Here are a few responses to your queries:
Here are some documentations that might help you:
BigQuery as a data warehouse
https://cloud.google.com/bigquery?_ga=2.144136053.-1150969476.1678208220#section-3
Looker Studio as a reporting tool
https://cloud.google.com/looker-studio?_ga=2.179270500.-1150969476.1678208220#section-4
https://cloud.google.com/bigquery/docs/visualize-looker-studio?_ga=2.144136053.-1150969476.167820822...
https://cloud.google.com/bigquery/docs/bi-engine-looker-studio?_ga=2.144136053.-1150969476.167820822...
https://cloud.google.com/blog/products/data-analytics/looker-and-data-studio-integrate-for-best-of-b...
Hi Aris,
I am following your guide on how to view the amount of data processed for data studio. I'm expecting that once I refresh my data on data studio, the associated queries in the dashboard will reflect in the query history, to check that I'm using the following query
```
SELECT
query,
creation_time
FROM `region-us`.INFORMATION_SCHEMA.JOBS_BY_PROJECT
WHERE
creation_time BETWEEN TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 1 HOUR) AND CURRENT_TIMESTAMP()
ORDER BY creation_time DESC
LIMIT 10;
```
I have tried different looker/data-studio projects but I can't get the associated queries to reflect on the history. Am I missing something?
Thanks for your help