THE LINUX FOUNDATION PROJECTS
Docs navigation
On this page

    Verify Accuracy of Provider Invoices

    This query uses the Provider column. Provider is deprecated in v1.3 and will be removed in v1.4.

    FOCUS Versions

    v1.0 v1.1 v1.2

    Context

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

    FOCUS SQL Query

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

    FOCUS Datasets

    FOCUS Columns