turbot/kubernetes_insights

Query: statefulset_by_creation_month

Usage

powerpipe query kubernetes_insights.query.statefulset_by_creation_month

Steampipe Tables

SQL

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

Dashboards

The query is used in the dashboards: