Cost Explorer for Lambda@Edge

0

A customer is trying to see the total cost for Lambda@Edge functions. The assigned cost tags for Lambda@Edge isn't showing on cost explorer. He can only see the cost of Lambda@Edge per region. Is there a way to see the cost for Lambda@Edge either per function or all functions across all regions instead of per region?

AWS
SherifT
已提問 3 年前檢視次數 817 次
1 個回答
0
已接受的答案

As to documentation, tags cannot be applied to Lambda@Edge resources, which I take it to be that tags are not applicable once Lambda@Edge functions are deployed. https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/lambda-requirements-limits.html#lambda-requirements-tagging

The only viable way to show cost per Lamba@Edge function is to use Cost and Usage Report, with query like below. Please note that both Lambda-Edge-GB-Second and Lambda-Edge-Request usage types are included. ` SELECT line_item_resource_id as Resource, SUM(CAST(line_item_unblended_cost AS decimal(16,8))) AS TotalSpend FROM

<table name> WHERE (year='2021') AND (month='01') AND line_item_product_code = 'AmazonCloudFront' AND line_item_usage_type LIKE '%Lambda-Edge%' AND line_item_line_item_type = 'Usage' GROUP BY line_item_resource_id ORDER By TotalSpend DESC; `

I would also remind that you need to consider CloudWatch log cost for Lambda@Edge function as well, which you would have to use CUR to analyze cost per log group for each function.

AWS
已回答 3 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南