Azure 实例数量和带宽使用情况
我想知道如何查找 azure 的 badwith 使用情况和实例数量。 azure api 中提供这些功能吗?
I would like to know how to find badwith usage and number of instance for azure. Is these features available in azure api ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
带宽使用编号它仅在计费中进行跟踪,目前没有开放的 API。如果您通过可编程 API 汇集每个请求,该 API 可以捕获它们发出的数据大小,您可以自己跟踪带宽使用情况。 (传入数据现在免费)。
实例数,是的。有两种方法可以做到这一点:
1) 如果从部署“外部”完成,您可以使用服务管理 API 导航到特定部署并调用此方法:http://msdn.microsoft.com/en-us/library/ee460804.aspx
2) 如果在角色内部完成,您可以使用RoleEnvironment.Roles["角色名称"].Instances.Count
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