turbot/aws_insights

Query: ebs_snapshot_storage_by_age

Usage

powerpipe query aws_insights.query.ebs_snapshot_storage_by_age

Steampipe Tables

SQL

with snapshots as (
select
title,
volume_size,
start_time,
to_char(start_time,
'YYYY-MM') as creation_month
from
aws_ebs_snapshot
),
months as (
select
to_char(d,
'YYYY-MM') as month
from
generate_series(date_trunc('month',
(
select
min(start_time)
from snapshots)),
date_trunc('month',
current_date),
interval '1 month') as d
),
snapshots_by_month as (
select
creation_month,
sum(volume_size) as size
from
snapshots
group by
creation_month
)
select
months.month,
snapshots_by_month.size as "GB"
from
months
left join snapshots_by_month on months.month = snapshots_by_month.creation_month
order by
months.month;

Dashboards

The query is used in the dashboards: