使用 EQATEC Profiler 分析 ASP.NET 网站

发布于 2024-07-10 17:59:00 字数 242 浏览 3 评论 0原文

我正在寻找免费的 ASP.NET 分析器,并且偶然发现了 EQATEC Profiler for .NET ,但我找不到任何有关如何使用它分析 ASP.NET 项目的说明。 请发布分步说明或包含足够信息的链接。

我使用的是 Visual Studio 2008 Professional 和 .NET 3.5。

I'm searching for a free ASP.NET profiler, and I stumbled upon EQATEC Profiler for .NET, but I can't find any instructions on how to profile ASP.NET projects with it. Please post step-by-step instructions or a link with sufficient info.

I'm using Visual Studio 2008 Professional and .NET 3.5.

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

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

发布评论

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

评论(4

悲欢浪云 2024-07-17 17:59:01

自从帕维尔的指示发布以来,他们似乎已经改变了用户界面。 以下是我为我的团队编写的说明。 他们取代了 Pavel 帖子中的步骤 4-8。

要使用 EQATEC 分析 ASP.NET 应用程序,只需在“应用程序路径”设置中选择应用程序的 bin 文件夹。

然后,单击表单底部的“构建”按钮。

然后,加载您的应用程序并转到您要分析的页面。 转到“运行”选项卡并单击“重置计数器”按钮。

然后,执行您想要分析的操作。 完成后,单击“拍摄快照”按钮。

完成后,快照报告将出现在底部列表中。 您可以双击它来查看它。

It looks like they have changed their user interface since Pavel's instructions were posted. Here are the instructions I wrote up for my team. They replace steps 4-8 in Pavel's post.

To profile an ASP.NET application using EQATEC, just select the application’s bin folder in the App Path setting.

Then, click the Build button at the bottom of the form.

Then, load your app and go to the page you want to profile. Go to the Run tab and click the Reset Counters button.

Then, do the action that you want to profile. When it’s done, click the Take Snapshot button.

When that is done, a snapshot report will appear in the bottom list. You can double-click on it to view it.

云胡 2024-07-17 17:59:01

这应该适用于 ASP.NET Web 项目:

  1. 编译您的项目。
  2. 启动网络应用程序。 您可以右键单击 Visual Studio 中的某个 .aspx 文件,然后选择“在浏览器中查看”。 (如果稍后启动应用程序,您将面临覆盖分析的 DLL 的风险。)
  3. 启动 EQATEC Profiler。
  4. 在“构建”选项卡上浏览到项目的 bin 文件夹。
  5. 单击“应用程序选项”按钮
    • 仅将输出文件夹设置为 $(AppDir)。
    • 取消选中“普通应用”。
  6. 单击构建按钮。
  7. 切换到您最喜欢的浏览器。 导航到您想要分析的页面。 您应该在 EQATEC Profiler 的“运行”选项卡中看到“已启动分析的应用程序”条目。
  8. 单击“拍摄快照”按钮。 “查看快照报告”列表中应出现一个新条目。 选择它并单击“查看”按钮。

编辑:根据评论更新了说明。

This should work for ASP.NET web projects:

  1. Compile your project.
  2. Start web application. You can right-click on some .aspx file in Visual Studio and select "View in Browser". (If you start your application later you risk overwriting profiled DLL.)
  3. Start EQATEC Profiler.
  4. On the Build tab browse to bin folder of your project.
  5. Click “App options” button
    • Set output folder to $(AppDir) only.
    • Uncheck “Ordinary app”.
  6. Click Build button.
  7. Switch to your favourite browser. Navigate to the page you want to profile. You should get "Profiled app started" entry in Run tab in EQATEC Profiler.
  8. Click "Take snapshot" button. A new entry should appear in "View snapshot reports" list. Select it and click View button.

Edit: Updated instructions according to comment.

﹏半生如梦愿梦如真 2024-07-17 17:59:01

您可能需要获取站点的编译版本(bin 文件夹中有该站点的 dll 还是只是依赖项?)。
最简单的方法就是发布它。 (只需右键单击 Visual Studio 中的站点)。 那么帕维尔的答案就会很好地发挥作用。

You may need to get a compiled version of your site (is there a dll for the site in the bin folder or just the dependencies?).
The easiest way to do this is to publish it. (Just right hand click the site in Visual Studio). Then Pavel's answer will work just fine.

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