THE LINUX FOUNDATION PROJECTS
Docs navigation
On this page

    Verify accuracy of service provider invoices

    FOCUS Versions

    v1.3 v1.4

    Context

    In order to verify that the charges found in the FOCUS dataset match those of the service providers’ invoices a FinOps Practitioner can aggregate cost data from service providers for a billing period and compare it to invoices.

    FOCUS SQL Query

    SELECT
      ServiceProviderName,
      BillingAccountId,
      BillingAccountName,
      BillingCurrency,
      SUM(BilledCost) AS TotalBilledCost
    FROM focus_data_table
    WHERE BillingPeriodStart >= ? AND BillingPeriodEnd < ?
    GROUP BY
      ServiceProviderName,
      BillingAccountId,
      BillingAccountName,
      BillingCurrency

    FOCUS Datasets

    FOCUS Columns