如何分析 silverlight 应用程序?

发布于 2024-07-05 04:36:48 字数 1560 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

失与倦" 2024-07-12 04:36:48

SL 4.0 有 coreclr etw 事件。 应该能够使用 XPERF 和 Perfmonitor 诊断异常、gc、线程和其他一些内容和 clr 等。 我有博客< /a> 关于这个。

仅供参考,使用 Perfmonitor 应该能够提供调用堆栈。

ETW 仅在 Windows 中可用。

SL 4.0 has coreclr etw events. Should be able to diagnose exception,gc, threading and few others using the XPERF and Perfmonitor and clr etw. I have blogged about this.

FYI using Perfmonitor should be able to provide call-stacks.

ETW is available only in Windows.

请持续率性 2024-07-12 04:36:48

我喜欢 RedGate ANTS。 我发现它是一个比 dotTrace 更好的分析器。

I like RedGate ANTS. I find it to be a much nicer profiler than dotTrace.

離人涙 2024-07-12 04:36:48

尝试 JetBrains dotTrace 性能分析器。
以下是如何进行的详细信息:
http://confluence.jetbrains.net/display/NetProf/How +到+个人资料+silverlight+应用程序

Try JetBrains dotTrace performance profiler.
Here is the detail how to:
http://confluence.jetbrains.net/display/NetProf/How+to+profile+silverlight+application

三生池水覆流年 2024-07-12 04:36:48

此处 是有关使用 XPerf 的详细博客文章...另请观看视频(位于PDC)关于分析 silverlight!

Here is a detailed blog entry about using XPerf... Also check out this video (at PDC) about profiling silverlight!!!

夏雨凉 2024-07-12 04:36:48

AtoLogic SilverProfiler 应该适合您。 请参阅http://www.atologic.com

AtoLogic SilverProfiler should work for you. See http://www.atologic.com

别再吹冷风 2024-07-12 04:36:48

安装 XPerf 和 xperfview,如下所示: http://msdn.microsoft.com/en-us/library/cc305218.aspx

(1) 启动您的示例

(2) xperf -on base

(3) 稍等一下

(4) xperf –d myprofile.etl

(5) 完成后,设置符号路径:

set _NT_SYMBOL_PATH= srvC:\symbolshttp://msdl.microsoft.com/downloads/symbols

(6) xperfview myprofile.etl

(7) 跟踪-> 加载符号

  • 选择您想要查看的 CPU 图表区域
  • 右键单击​​并选择摘要表

(8) 接受使用符号的 EULA,展开 IExplore、展开 agcore.dll 或任何您的顶级模块

Install XPerf and xperfview as available here: http://msdn.microsoft.com/en-us/library/cc305218.aspx

(1) Startup your sample

(2) xperf -on base

(3) wait for a bit

(4) xperf –d myprofile.etl

(5) when this is done, set your symbol path:

set _NT_SYMBOL_PATH= srvC:\symbolshttp://msdl.microsoft.com/downloads/symbols

(6) xperfview myprofile.etl

(7) Trace -> Load Symbols

  • Select the area of the CPU graph that you want to see
  • Right-click and select Summary Table

(8) Accept the EULA for using symbols, expand IExplore, expand agcore.dll or whatever is your top module

且行且努力 2024-07-12 04:36:48

Visual Studio 2010(带有 Silverlight 4 工具)提供了用于分析 Silverlight 应用程序的命令行支持。

有关分析 SL4 的完整说明,请访问:http: //www.nachmore.com/2010/profiling-silverlight-4-with-visual-studio-2010/

Visual Studio 2010 (with the Silverlight 4 tools) comes with command line support for profiling Silverlight apps.

Full instructions for profiling SL4 can be found at: http://www.nachmore.com/2010/profiling-silverlight-4-with-visual-studio-2010/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文