Windsor提供了容器性能检测的功能,只需在程序启动的时候后添加一下代码
var diagnostic = LifecycledComponentsReleasePolicy.GetTrackedComponentsDiagnostic(_container.Kernel); var counter = LifecycledComponentsReleasePolicy.GetTrackedComponentsPerformanceCounter(new PerformanceMetricsFactory()); _container.Kernel.ReleasePolicy = new LifecycledComponentsReleasePolicy(diagnostic, counter);
其中_container是你的IOC容器。
然后右键点击计算机->管理出现如下界面
点击+来添加Castle Windsor的性能监控。
时间: 2024-10-29 19:59:30