c# 读取远程主机性能计数器_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > c# 读取远程主机性能计数器

c# 读取远程主机性能计数器

 2015/2/9 15:57:07  ささやく  程序员俱乐部  我要评论(0)
  • 摘要:PerformanceCounterpc=newPerformanceCounter("WebService","CurrentConnections","DefaultWebSite","10.1.254.103");Response.WriteLine(pc.NextValue());Thread.Sleep(1000);Response.WriteLine(pc.NextValue());1.需要usingSystem.Diagnostics;2
  • 标签:C# 主机 远程
PerformanceCounter pc = new PerformanceCounter("Web Service", "Current Connections", "Default Web Site","10.1.254.103");

Response.WriteLine(pc.NextValue());
Thread.Sleep(1000);
Response.WriteLine(pc.NextValue());

1.需要using System.Diagnostics;

2.在本地服务器建立一个与远程主机上一样的账号密码即可,远程主机的账号密码需要在Performance Monitor Users和Administrators组下;

(可能需要开启远程主机 Remote Registry 服务)

public PerformanceCounter(
	string categoryName,
	string counterName,
	string instanceName,
	string machineName
)

class="parameter">categoryName
类型:System.String
此性能计数器关联的性能计数器类别(性能对象)的名称。
counterName
类型:System.String
性能计数器的名称。
instanceName
类型:System.String
性能计数器类别实例的名称,或者为空字符串 ("")(如果该类别包含单个实例)。
machineName
类型:System.String
性能计数器及其关联的类别所在的计算机。

 

发表评论
用户名: 匿名