turbot/steampipe-mod-oci-insights

Dashboard: OCI File Storage File System Detail

This dashboard contains 2 cards, 1 graph, 1 input and 5 tables.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select OCI File Storage File System Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run oci_insights.dashboard.filestorage_filesystem_detail --share

Queries

This dashboard uses the the following queries:
select
case when is_clone_parent then 'Cloned' else 'Not cloned' end as "File System Type"
from
oci_file_storage_file_system
where
id = $1;

Tags