Although the result for this query looks rather simple, in a visualization tool you can see overlaps in warehouse usage, combined peaks/valleys for usage. A sum of AVG_RUNNING is a good metric for combined usage.
from snowflake.account_usage.warehouse_metering_history;
This is a similar view to the one above but is focused more on credit usage, so you could assess overall credit usage across warehouses.
4) Query History
SELECT USER_NAME,
ROLE_NAME,
WAREHOUSE_NAME,
month(START_TIME) as MONTH, // you can change the granularity per your need
count(QUERY_ID)
from snowflake.account_usage.query_history GROUP BY 1,2,3,4;
This query will give you an idea of the #queries run by users on different warehouses over a particular period (say a month, week, or year)