turbot/oci_insights

Query: mysql_db_system_top10_cpu_past_week

Usage

powerpipe query oci_insights.query.mysql_db_system_top10_cpu_past_week

SQL

with top_n as (
select
id,
avg(average)
from
oci_mysql_db_system_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_mysql_db_system_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: