turbot/powerpipe-mod-covid19

Dashboard: COVID-19 Dashboard

This dashboard contains 4 cards.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe 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 login
powerpipe dashboard run covid19.dashboard.covid19 --share

Queries

This dashboard uses the the following queries:
select
continent,
sum(total_boosters) as "Total Boosters"
from
covid_data
where
continent != ''
group by
continent
order by
sum(total_boosters) desc;