NEW
FinOps for AI Training Now Available

Report application cost month over month

Asset Library / FinOps Use Cases / Report application cost month over month

Context

As an application owner or engineering team I want to track the month over month costs of my application.

FOCUS Columns

FOCUS SQL Query

SELECT
  MONTH(BillingPeriodStart),
  ServiceName,
  SUM(EffectiveCost) AS TotalEffectiveCost
FROM focus_data_table
WHERE Tags["Application"] = ?
  AND ChargePeriodStart >= ? AND ChargePeriodEnd < ?
GROUP BY
  MONTH(BillingPeriodStart),
  ServiceName