turbot/powerpipe-mod-starwars

Dashboard: Star Wars Species Detail

This dashboard answers the following questions for each species:

  • What is the classification of the species?
  • What is the average height of the species in centimeters?
  • What is the most common skin color of the species?
  • What is the average lifespan of the species in years?
This dashboard contains 4 cards, 1 input and 3 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/powerpipe-mod-starwars

Start the Powerpipe server:

powerpipe server

Open http://localhost:9033 in your browser and select Star Wars Species Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run starwars.dashboard.starwars_species_detail --share

Queries

This dashboard uses the the following queries:
select
'Average Height in cm' as label,
avg(cast(nullif(average_height, 'NA') as float)) as value
from
species
where
name = $1;