I would like to know how to find badwith usage and number of instance for azure. Is these features available in azure api ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Bandwidth usage no. It is only tracked in billing and that currently has no open API. You can track bandwidth usage yourself if you funnel every request thru programmable API that can capture the size of data they're pushing out. (Incoming data is now free). Number of instances, yes. Two ways to do this: 1) If done from "outside" of your deployment, you can use Service Management API to navigate to a specific Deployment and call this method: http://msdn.microsoft.com/en-us/library/ee460804.aspx 2) If done inside a role, you can use RoleEnvironment.Roles["role-name"].Instances.Count |
|||
|
|