turbot/oci_insights

Query: ons_notification_topic_by_compartment

Usage

powerpipe query oci_insights.query.ons_notification_topic_by_compartment

SQL

with compartments as (
select
id,
'root [' || title || ']' as title
from
oci_identity_tenancy
union
(
select
c.id,
c.title || ' [' || t.title || ']' as title
from
oci_identity_compartment c,
oci_identity_tenancy t
where
c.tenant_id = t.id
and c.lifecycle_state = 'ACTIVE'
)
)
select
c.title as "Title",
count(t.*) as "Topics"
from
oci_ons_notification_topic as t,
compartments as c
where
c.id = t.compartment_id
group by
c.title
order by
c.title;

Dashboards

The query is used in the dashboards: