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.

3 réponses
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
répondu il y a 2 ans
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
répondu il y a 2 ans
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
répondu il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions