turbot/steampipe-mod-oci-insights

Dashboard: OCI ONS Notification Topic Detail

This dashboard contains 1 card, 1 graph, 1 input and 3 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 ONS Notification Topic Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
name as "Topic Name",
time_created as "Time Created",
api_endpoint as "API Endpoint",
topic_id as "OCID",
compartment_id as "Compartment ID"
from
oci_ons_notification_topic
where
topic_id = $1;
{
"$1": "id"
}

Tags