Cloudfront cost by distribution

0

I would like to know how can I get the billing of AW Cloudfront by distribution ? With the new billing console, I can't get the old CSV by ressource for the previous month.

已提问 2 年前1098 查看次数
3 回答
1

Have a look at the Cost And Usage Report which allows you to publish your cost and billing data to an Amazon S3 bucket , which you can later query , using Athena . The following example query will return the CloudFront cost , by distribution , including usage (TBs) :

select
  "line_item_usage_type",
  "line_item_resource_id" as distribution,
  "product_from_location",
  "product_to_location",
  sum("line_item_usage_amount")/1024 as "Usage (TBs)",
  sum("line_item_unblended_cost") as cost
from DATABASE.TABLE
where
  "line_item_product_code" = 'AmazonCloudFront'
group by
  "line_item_usage_type",
  "line_item_resource_id",
  "product_from_location",
  "product_to_location"
order by
  sum("line_item_unblended_cost") des

In addition , you may look at the Query Library for additional queries that you could use (CloudFront or other services). All reports can be downloaded as a CSV file.

AWS
dotanp
已回答 2 年前
0

You can view this with a nice visualization that is also customizable by deploying the Cloud Intelligence Dashboards.

Have a look at an example, click on the Data Transfer Summary tab, and scroll all the way to the bottom to see the CloudFront section where you can find visualizations by distribution.

Click here to deploy the CIDs into your own account.

AWS
已回答 2 年前
0

Take a look at Cost Explorer for this exercise. Applying a unique "Name" tag to each CloudFront distribution, and activating that "Name" tag using these instructions would provide visibility into costs per CloudFront Distribution. Once tagged, the cost data would only be moving forward, not retroactive.

profile pictureAWS
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则