从我的 .Net 应用程序使用 AppFabric DashBoard
我可以从我的 C# 应用程序中使用任何 api 来操作 appFabric 仪表板提供的信息吗?
例如,从我的网站访问仪表板的信息,这样我就可以提供有关进程状态、wcf 失败等的更多信息?
谢谢
Is there any api which I can use from my c# application to manipulate the information that the appFabric dashboard provides??
For example accesing the information of the dashboard from my website so I can give much more information about the state of the proceses, wcf fails, etc??
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,您必须深入研究持久性和监控数据库模式才能理解并构建您自己的 API。它主要依赖于请求这些数据库的查询。
IIS 上的 Appfabric 是一个用于监视 wcf 服务的 UI,它显然似乎依赖于对这些数据库的查询。它可以检索对您的服务的空闲、失败或正在进行的调用。
App Fabric 仪表板还提供“where”SQL 谓词的详细信息。您可以自由地从中获得灵感来制作您自己的 API/UI。
Imo you'd have to dig into persistence and monitoring database schemas to understand and then build your own API. It would mainly rely on queries requesting these databases.
Appfabric on IIS is a UI for monitoring wcf services, it obviously seems to rely on queries against these databases. It can retrive idle, failed or in progress calls to your services.
App fabric dashboard also provides details with "where" SQL predicates. You can freely inspire from these to make your own API/UI.