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

Analyze marketplace vendors costs

Asset Library / FinOps Use Cases / Analyze marketplace vendors costs

Context

FinOps Practitioners want to be able to answer the question: How much are we spending each month on vendor products that were purchased via a Cloud Service Provider’s marketplace?

FOCUS Columns

FOCUS SQL Query

SELECT
  ChargePeriodStart,
  ChargePeriodEnd,
  ProviderName,
  PublisherName,
  InvoiceIssuerName,
  ROUND(SUM(EffectiveCost),2) AS TotalEffectiveCost
FROM focus_data_table
WHERE ChargePeriodStart >= ? AND ChargePeriodEnd < ?
  AND InvoiceIssuerName != PublisherName
GROUP BY
  ChargePeriodStart,
  ChargePeriodEnd,
  ProviderName,
  PublisherName,
  InvoiceIssuerName
ORDER BY TotalEffectiveCost ASC
Related KPIs
Percentage of Normalized, Queryable Data within Repository

Calculate percentage of normalized and queryable data in data warehouse, repository, or similar, vs Accounts Payable Invoice.

Number of Monthly Active Users (MAU) for Cost Insight Products

This measures any one single user accessing any insight Cost Insight Products.

Related Personas
FinOps Practitioner