turbot/steampipe-mod-ibm-insights

Dashboard: IBM Compute Instance Disk Detail

This dashboard answers the following questions for each disk:

  • How is the disk configured?
  • What instance is it attached to?
This dashboard contains 2 cards, 1 input and 2 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-ibm-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select IBM Compute Instance Disk Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run ibm_insights.dashboard.ibm_compute_instance_disk_detail --share

Queries

This dashboard uses the the following queries:
select
i.name as "Instance Name",
i.id as "Instance ID",
i.crn as "CRN",
i.status as "Status",
i.created_at as "Create Time"
from
ibm_is_instance_disk as d,
ibm_is_instance as i
where
d.instance_id = i.id
and d.id = $1
order by
i.name;
{
"$1": "id"
}

Tags