turbot/gitlab_insights

Query: project_expiring_member_30_90_days_count

Usage

powerpipe query gitlab_insights.query.project_expiring_member_30_90_days_count

SQL

select
'30-90 Days' as label,
count(m.*) as value
from
gitlab_my_project p
join gitlab_project_member m on p.id = m.project_id
where
m.state = 'active'
and (
m.expires_at is not null
and m.expires_at between symmetric now() + '30 days' :: interval
and now() + '90 days' :: interval
);

Dashboards

The query is used in the dashboards: