turbot/gcp_insights

Query: compute_disk_storage_by_creation_month

Usage

powerpipe query gcp_insights.query.compute_disk_storage_by_creation_month

Steampipe Tables

SQL

with disks as (
select
title,
creation_timestamp,
size_gb,
to_char(creation_timestamp, 'YYYY-MM') as creation_month
from
gcp_compute_disk
),
months as (
select
to_char(d, 'YYYY-MM') as month
from
generate_series(
date_trunc(
'month',
(
select
min(creation_timestamp)
from
disks
)
),
date_trunc('month', current_date),
interval '1 month'
) as d
),
disks_by_month as (
select
creation_month,
sum(size_gb) as size
from
disks
group by
creation_month
)
select
months.month,
disks_by_month.size as "GB"
from
months
left join disks_by_month on months.month = disks_by_month.creation_month
order by
months.month;

Dashboards

The query is used in the dashboards: