turbot/digitalocean_insights

Query: blockstorage_volume_creation_month

Usage

powerpipe query digitalocean_insights.query.blockstorage_volume_creation_month

Steampipe Tables

SQL

with volumes as (
select
title,
created_at,
to_char(created_at, 'YYYY-MM') as creation_month
from
digitalocean_volume
),
months as (
select
to_char(d, 'YYYY-MM') as month
from
generate_series(
date_trunc(
'month',
(
select
min(created_at)
from
volumes
)
),
date_trunc('month', current_date),
interval '1 month'
) as d
),
volumes_by_month as (
select
creation_month,
count(*)
from
volumes
group by
creation_month
)
select
months.month,
volumes_by_month.count as "Volumes"
from
months
left join volumes_by_month on months.month = volumes_by_month.creation_month
order by
months.month;

Dashboards

The query is used in the dashboards: