turbot/oci_insights

Query: compute_top10_cpu_past_week

Usage

powerpipe query oci_insights.query.compute_top10_cpu_past_week

SQL

with top_n as (
select
id,
avg(average)
from
oci_core_instance_metric_cpu_utilization_daily
where
timestamp >= CURRENT_DATE - INTERVAL '7 day'
group by
id
order by
avg desc
limit
10
)
select
timestamp,
id,
average
from
oci_core_instance_metric_cpu_utilization_hourly
where
timestamp >= CURRENT_DATE - INTERVAL '7 day'
and id in (
select
id
from
top_n
)
order by
timestamp;

Dashboards

The query is used in the dashboards: