This work is licensed under CC BY 4.0 - Read how use or adaptation requires attribution

Identify unused capacity reservations

Asset Library / FinOps Use Cases / Identify unused capacity reservations

Context

Identify all data in a time period where CapacityReservationStatus is ‘unused’ thus identifying capacity reservations that aren’t used and enabling the Practitioner to take action on either cancelling the reservation (if able), working with other personas on a workload that could use the reservation, or performing informed ignore (knowing it is there but ignoring it because there is nothing one can do).

FOCUS Columns

FOCUS SQL Query

SELECT
  ProviderName,
  BillingAccountId,
  CapacityReservationId,
  CapacityReservationStatus,
  SUM(BilledCost) AS TotalBilledCost,
  SUM(EffectiveCost) AS TotalEffectiveCost
FROM focus_data_table
WHERE ChargePeriodStart >= ? AND ChargePeriodEnd < ?
  AND CapacityReservationStatus = 'Unused'
GROUP BY
  ProviderName,
  BillingAccountId,
  CapacityReservationId,
  CapacityReservationStatus
Related KPIs
Effective Average Compute Cost per Core

Track average cost, after amortization of unused commitment discounts, of each Core per calendar month.

Effective Savings Rate Percentage

Return on investment metric of all commitment discounts.

Percent of Unused Resources

Measure of unused cloud resources, e.g., unattached storage volumes, load balancers, EIPS, and more.