turbot/alicloud_insights

Query: ram_groups_by_creation_month

Usage

powerpipe query alicloud_insights.query.ram_groups_by_creation_month

Steampipe Tables

SQL

with groups as (
select
title,
create_date,
to_char(create_date,
'YYYY-MM') as creation_month
from
alicloud_ram_group
),
months as (
select
to_char(d,
'YYYY-MM') as month
from
generate_series(date_trunc('month',
(
select
min(create_date)
from groups)),
date_trunc('month',
current_date),
interval '1 month') as d
),
groups_by_month as (
select
creation_month,
count(*)
from
groups
group by
creation_month
)
select
months.month,
groups_by_month.count
from
months
left join groups_by_month on months.month = groups_by_month.creation_month
order by
months.month;

Dashboards

The query is used in the dashboards: