Asset Library / FinOps Use Cases / Analyze marketplace vendors costs
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?
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