C#高级编程性能监视.doc

上传人:asd****56 文档编号:70343961 上传时间:2023-01-19 格式:DOC 页数:7 大小:103KB
返回 下载 相关 举报
C#高级编程性能监视.doc_第1页
第1页 / 共7页
C#高级编程性能监视.doc_第2页
第2页 / 共7页
点击查看更多>>
资源描述

《C#高级编程性能监视.doc》由会员分享,可在线阅读,更多相关《C#高级编程性能监视.doc(7页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、 性能监视可以用于获取正常运行的服务的信息。性能监视是一个很好的工具,它能帮助我们了解系统的工作负荷,观察变化及趋势。Windows 2000有许多性能对象,例如System、Memory、Objects、Process、Processor、Thread和Cache等。这些对象都有许多的监视点。例如,使用Process对象,可以监视所有进程或某一具体进程的用户时间、句柄数、页错误和线程数等。一些应用程序也添加具体的对象,例如SQL Server。对于QuoteService示例应用程序而言,要获取的信息是客户请求的数量和通过网络发送的数据有多少等。1. 性能监视类System.Diagnost

2、ics命名空间中包含下述性能监视类: PerformanceCounter类可以用于监视数量和编写数量。此外,使用这个类还可以创建新的性能种类。 使用PerformanceCounterCategory可以遍历所有现有的种类并创建新的种类。可以编程获取种类的记数器。 PerformanceCounterInstaller类用于性能记数器的安装。这个类的用法与前面的EventLogInstaller相似。2. Performance Counter Builder要创建新的性能记数器种类,可以选择Server Explorer中的性能记数器,再在弹出的菜单中选择菜单项Create New Cat

3、egory,这将启动Performance Counter Builder,如图32-25所示。图 32-25把性能记数器种类设置为Quote Service。表32-6中给出了服务的所有性能记数器。表 32-6名 称描 述类 型# of Bytes sent发送给客户机的#字节总量NumberOfItems32# of Bytes sent / sec一秒内发送给客户机的#字节NumberOfItems32# of Requests请求的总数#NumberOfItems32# of Requests / sec一秒内请求的总数#NumberOfItems32Performance Count

4、er Builder把配置写到性能数据库中。使用System.Diagnostics命名空间中PerformanceCategory类的Create()方法,可以动态地把配置写到性能数据库中。使用Visual Studio .NET,可以在以后为其他系统添加安装程序。3. 添加PerformanceCounter组件接下来,要从工具箱中添加PerformanceCounter组件。这里不使用工具箱的种类组件,而是直接把前面创建的性能计数从Server Explorer拖放到设计视图上。这样实例会自动配置:所有对象的CategoryName属性都设置为Quote Service Count,Co

5、unterName属性设置为选中种类中的一个可用值。这个应用程序不是读取性能计数,而是写入,所以必须把ReadOnly属性设置为false。private void InitializeComponent() /. / performanceCounterRequestsPerSec / this.performanceCounterRequestsPerSec.CategoryName = Quote Service Counts; this.performanceCounterRequestsPerSec.CounterName = # of Requests / sec; this.pe

6、rformanceCounterBytesSentTotal.MachineName = NAGELC this.performanceCounterRequestsPerSec.ReadOnly = false; / / performanceCounterBytesSentTotal / this.performanceCounterBytesSentTotal.CategoryName = Quote Service Counts; this.performanceCounterBytesSentTotal.CounterName = # of Bytes sent; this.perf

7、ormanceCounterBytesSentTotal.MachineName = NAGELC this.performanceCounterBytesSentTotal.ReadOnly = false; / / performanceCounterBytesSentPerSec / this.performanceCounterBytesSentPerSec.CategoryName = Quote Service Counts; this.performanceCounterBytesSentPerSec.CounterName = # of Bytes sent / sec; th

8、is.performanceCounterBytesSentTotal.MachineName = NAGELC this.performanceCounterBytesSentPerSec.ReadOnly = false; / / performanceCounterRequestsTotal / this.performanceCounterRequestsTotal.CategoryName = Quote Service Counts; this.performanceCounterRequestsTotal.CounterName = # of Requests; this.per

9、formanceCounterBytesSentTotal.MachineName = NAGELC this.performanceCounterRequestsTotal.ReadOnly = false;/.对于性能值的计算,必须给类QuoteServer添加两个私有变量requestPerSec和bytesPerSec。public class QuoteServer : System.ComponentModel.Component private int requestsPerSec; private int bytesPerSec;在QuoteServer类的Listener()

10、方法中,直接增加显示总值的性能计数。PerformanceCounter.Increment()用于计算请求的总数,而IncrementBy()方法计算发送的字节总数。对于按秒显示值的性能计数而言,在Listener()方法中只更新requestsPerSec和bytessPerSec变量: protected void Listener() try listener = new TCPListener(port); listener.Start(); while (true) Socket socket = listener.Accept();string message = GetRand

11、omQuoteOfTheDay();UnicodeEncoding encoder = new UnicodeEncoding();byte buffer = encoder.GetBytes(message);socket.Send(buffer, buffer.Length, 0); socket.Close();performanceCounterRequestsTotal.Increment();performanceCounterBytesSentTotal.IncrementBy(buffer.Length);requestsPerSec+;bytesPerSec += buffe

12、r.Length; catch (Exception e) string message = Quote Server failed in Listener: + e.Message; eventLog.WriteEntry(message, EventLogEntryType.Error); 为了每秒显示一次已更新的值,可以添加一个Timer组件。把OnTime()方法设置为这个组件的Elapsed事件。如果Interval属性设置为1000,OnTime()方法就每秒调用一次,它使用PerformanceCounter类的RawValue属性设置性能计数: protected void O

13、nTimer (object sender, System.Timers. ElapsedEventArgs e) performanceCounterBytesSentPerSec.RawValue = bytesPerSec;performanceCounterRequestsPerSec.RawValue = requestsPerSec;bytesPerSec = 0;requestsPerSec = 0; 6. perfmon.exe现在,就可以监视服务了。执行Administrative Tools | Performance命令可以启用Performance工具。按下工具栏中的“”按钮,可以添加性能计数。图32-26中显示出的性能对象是Quote Service,配置的所有记数器都显示在记数器列表中。图 32-26在添加记数器之后,可以看到服务的计数。使用这个性能工具,也可以创建日志文件,以便将来分析性能,如图32-27所示。图 32-27

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 技术资料 > 其他杂项

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁