turbot/steampipe-mod-alicloud-insights

Dashboard: AliCloud RDS Instance Detail

his dashboard answers the following questions for each instance:

  • How is the instance configured?
  • What relationships does the instance have with other resources?
  • What tags are applied?
  • How much storage is allocated across the instance?
  • What parameter groups are attached to the instance?
  • What security groups is the instance configured with?
This dashboard contains 6 cards, 1 graph, 1 input and 6 tables.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select AliCloud RDS Instance Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run alicloud_insights.dashboard.rds_instance_detail --share

Queries

This dashboard uses the the following queries:
select
db_instance_storage_type as "DB Instance Storage Type",
db_instance_storage as "DB Instance Storage (GB)",
db_max_quantity as "DB Max Quantity",
account_max_quantity as "Account Max Quantity",
db_instance_cpu as "DB Instance CPU",
db_instance_memory as "DB Instance Memory (MB)",
max_connections as "Maximum Concurrent Connections",
lock_mode as "Lock Mode"
from
alicloud_rds_instance
where
arn = $1
and account_id = split_part($1,':',5)
and region = split_part($1,':',4);

Tags