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

Forecast amortized costs month over month based on historical trends

Asset Library / FinOps Use Cases / Forecast amortized costs month over month based on historical trends

Context

Finance needs to perform month over month forecasting by extrapolating amortized costs based on historical rates. Having this data enables Finance to create amortized cost models.

FOCUS Columns

FOCUS SQL Query

SELECT
  MONTH(BillingPeriodStart),
  ProviderName,
  ServiceCategory,
  ServiceName,
  ChargeCategory,
  SUM(EffectiveCost) AS TotalEffectiveCost
FROM focus_data_table
WHERE BillingPeriodStart >= ?  AND BillingPeriodEnd < ?
GROUP BY
  MONTH(BillingPeriodStart),
  ProviderName,
  ServiceCategory,
  ServiceName,
  ChargeCategory
Related KPIs
Forecast Drift Rate

Evaluate how cloud infrastructure forecasts change over time due to various factors.

Forecast Accuracy Rate (Usage)

Compares forecasted vs. actual cloud usage (vCPUs, Memory, etc) over a specific period (e.g., day, month, quarter).

Forecast Accuracy Rate (Spend)

This metric compares forecasted vs. actual cloud spend over a specific period (e.g., day, month, quarter).

Related Personas
Finance
Related Capabilities
Forecasting