Show the "worst" page metrics:
SELECT MetricsDate, PageName, RecordCountEPT, EptBinUnder3, EptBin3To5, EptBin5To8, EptBin8To10, EptBinOver10, TotalCount
FROM LightningUsageByPageMetrics
LIMIT 20
Use the number of views for each page and add a rule if not used so much?
Global view per day per profile's users:
SELECT MetricsDate, ApexPage.Name, Apexpage.NamespacePrefix, Profile.Name, DailyPageViewCount
FROM VisualforceAccessMetrics
LIMIT 20
Show the "worst" page metrics:
Use the number of views for each page and add a rule if not used so much?