Dashboard: COVID-19 Dashboard
This dashboard contains 4 cards.
Usage
Install the mod:
mkdir dashboardscd dashboardspowerpipe mod initpowerpipe mod install github.com/turbot/powerpipe-mod-covid19
Start the Powerpipe server:
powerpipe server
Open http://localhost:9033 in your browser and select COVID-19 Dashboard dashboard.
You could also snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe dashboard run covid19.dashboard.covid19 --share
Queries
This dashboard uses the the following queries:
select continent, sum(total_boosters) as "Total Boosters"from covid_datawhere continent != ''group by continentorder by sum(total_boosters) desc;