Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can we find out how much money we are saving by scaling (via increasing and decreasing instance) our Windows Azure application?

Also, is there a way to find out how much database storage is used and its cost, and how much bandwidth is used and its cost?

share|improve this question

closed as off topic by Mitch Wheat, Femi, Frankston Ralphington III, Gilles, PaĆ­lo Ebermann Jul 13 '11 at 15:33

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 0 down vote accepted

I don't believe there is currently any way to measure in an immediate way how your Windows Azure application changes affect your billing and usage. There is, however, a feature request for a billing/usage API you could vote on.

SQL Azure includes two system views that can detail your storage and bandwidth usage.

The sys.database_usage view lists the number, type, and duration of databases on the server and the sys.bandwidth_usage view describes the bandwidth used with each database.

The above was excerpted from this article.

Additional Links

In particular - How to find acrued billing charges for Windows Azure
In general - Search Stack Overflow for "Azure Billing"

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.