IIS7 分析

发布于 2024-07-13 13:07:08 字数 159 浏览 4 评论 0原文

有没有办法分析 IIS7? (免费软件?)

  • 连接数
  • 带宽使用
  • 错误(事件查看器?) -...

thx,Lieven Cardoen

ps:类似于 mssqlserver 分析的东西

Is there a way to profile IIS7? (freeware?)

  • Number of connections
  • Bandwidth usage
  • Errors (Event Viewer?)
    -...

thx, Lieven Cardoen

ps: Something similar to mssqlserver profiling

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

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

发布评论

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

评论(2

烧了回忆取暖 2024-07-20 13:07:09

没有什么比 MSSQL 的分析器更好的了,而是一组工具:

  • Perfmon 将向您显示每个网站的当前连接数。 Perfmon.msc,Web服务,当前连接,选择网站,单击添加。 不喜欢 perfmon 的交互特性? 没问题,使用 logman.exe,这是一个很好的 perfmon CLI。

  • 如果您启用发送字节数和发送字节数,则可以从日志文件中获取带宽使用情况。 iis 日志文件中收到的字节数。 这也可以通过性能计数器获得 - Web 服务、每秒发送/接收的字节数。 我认为两者相辅相成。

  • IIS7 有一个新功能,称为失败请求跟踪。 您可以告诉它登录所有 500 个页面,或任何需要 15 秒运行的 .aspx 页面,或根据事件严重性登录。 它将所有这些信息保存在 \inetpub 下的 XML 文件中,以便轻松解析,并且还为您提供了一个很好的 XSLT,以便您在浏览器中查看它并根据需要进行深入分析。

http://learn.iis。 net/page.aspx/266/troubleshooting-failed-requests-using-tracing-in-iis7/

There's nothing quite like MSSQL's profiler, but a set of tools:

  • Perfmon will show you the # of current connections per website. Perfmon.msc, web service, current connections, select website, click add. Don't like the interactive nature of perfmon? No problem, use logman.exe, a nice CLI for perfmon.

  • Bandwidth usage you can get from your log files if you enable bytes sent & bytes received in your iis log files. This is also available via performance counters - web service, bytes sent/received/sec. I think the two complement each other fairly well.

  • IIS7 has a new feature called Failed Request Tracing. You can tell it to log on all 500's,or any .aspx page that takes 15 seconds to run, or based on event severity. It saves all of this information in an XML file for you under \inetpub so it's easily parseable, and also gives you a nice XSLT to view it in your browser and drill down if you like.

http://learn.iis.net/page.aspx/266/troubleshooting-failed-requests-using-tracing-in-iis7/

紧拥背影 2024-07-20 13:07:09

试用IIS 7.0 管理包。 它具有:

配置编辑器:
配置编辑器模块将帮助您管理配置文件。 该工具仅供服务器管理员使用。 它允许您编辑配置文件中的任何部分、属性、元素或集合。 除了编辑这些值之外,您还可以锁定和解锁它们。 配置编辑器还允许您根据您执行的操作生成脚本,并搜索文件以查看值的使用位置。

IIS 报告:
IIS 报告模块使您能够查看有关您网站的关键统计信息。 您还可以生成自己的模块报告来收集与您和您的业务相关的信息。 目前,您可以以图表和/或表格的形式查看这些报告的输出。

数据库管理器:
该模块不再是管理包的一部分,而是在 IIS 下载中心作为单独的下载提供。

用户界面扩展:
UI 扩展模块允许您通过 IIS 管理器管理现有功能。

  • FastCGI 模块允许您管理 FastCGI 设置。
  • 这两个 ASP.NET 模块允许您管理授权和自定义错误设置。
  • 最后,HTTP 请求过滤允许您设置 HTTP 请求过滤规则。

Try out the Administration Pack for IIS 7.0. It has:

Configuration Editor:
The configuration editor module will help you manage your configuration files. This tool is available for server administrators only. It allows you to edit any section, attribute, element or collection in your configuration file. In addition to editing these values you are also able to lock and unlock them. The configuration editor also allows you to generate scripts based on the actions you take as well as search the file to see where values are being used.

IIS Reports:
The IIS Reports module enables you to view key statistics about your website. You can also generate your own module reports to gather information relevant to you and your business. Currently you can view the output of these reports as charts and/or tables.

Database Manager:
This module is no longer part of the Administration Pack and instead is offered as a separate download in the IIS Download Center.

UI Extensions:
UI Extension modules allow you to manage existing features through IIS Manager.

  • The FastCGI module allows you to manage your FastCGI settings.
  • The two ASP.NET modules allow you to manage your authorization and custom errors settings.
  • Finally the HTTP Request Filtering allows you to setup rules for http request filtering.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文