Understanding Amazon AWS usage data

amazon ec2amazon s3amazon-web-servicesusage

I love Amazon AWS, but I'm tearing my hair out over the obscure usage data they give you. All they seem to have is either an extremely high level summary that just shows you your total monthly cost for each service, or a very hard to read spreadsheet that gives you very detailed usage data but leaves out really obvious things like the cost of each line item (it only shows you the amount of usage, so you have to go and find the rate for each service separately and then multiply rate x usage to get the cost).

Does anybody know of any tools or services that give you better insight into AWS usage data, e.g. total bandwidth cost in and out of AWS per day, or EC2 instance cost per day per instance ? Ideally I'd like to be able to pull the data programatically, so that I don't have to download a spreadsheet and massage it manually.

Best Answer

Yeah, unfortunately they don't do a whole lot of analysis for you, if you want any information more detailed than their monthly cost summary, you're going to have to write your own scripts to process the raw data they give you. You can download it in several formats, so it's pretty easy to process, you just have to decide what you want to do with it.

Related Topic