c# 获取端口的连接数,网站的连接数

原文:c# 获取端口的连接数,网站的连接数

端口连接数:

public static int PortTcpConnection(int port)
{
IPGlobalProperties properti = IPGlobalProperties.GetIPGlobalProperties();
var tcps = properti.GetActiveTcpConnections().ToList();

var list = tcps.Where(f => f.LocalEndPoint.Port == port);

var iplist = list.GroupBy(f => f.RemoteEndPoint.Address);
return iplist.Count();
}

网站连接数:

public List<WebSite> ListSite()
{
List<WebSite> list = new List<WebSite>();
using (ServerManager sm = new ServerManager())
{
foreach (var s in sm.Sites)
{
WebSite site = new WebSite();
site.ID = s.Id;
site.SiteName = s.Name;
site.ApplicationPoolName = s.Applications["/"].ApplicationPoolName;
site.PhysicalPath = s.Applications["/"].VirtualDirectories["/"].PhysicalPath;
site.State = s.State.ToString();

//System.Management.ManagementObject o = new ManagementObject("Win32_PerfFormattedData_W3SVC_WebService.Name=‘" + s.Name + "‘");
//site.CurrentConnections = int.Parse(o.Properties["CurrentConnections"].Value.ToString());这个太慢

int tcps = 0;
foreach (var tmp in s.Bindings)
{
WebSite.Bind bind = new WebSite.Bind();
bind.IP = tmp.EndPoint.Address.ToString();
bind.Port = tmp.EndPoint.Port;
bind.Host = tmp.Host;
tcps += Util.SystemInfo.PortTcpConnection(bind.Port);
site.BindList.Add(bind);
}
site.CurrentConnections = tcps;//当前连接数
list.Add(site);
}
}
return list;
}

---------------------

原文:https://blog.csdn.net/wyljz/article/details/79207507
版权声明:本文为博主原创文章,转载请附上博文链接!

原文地址:https://www.cnblogs.com/lonelyxmas/p/10878858.html

时间: 2024-10-17 15:45:21

c# 获取端口的连接数,网站的连接数的相关文章

zabbix-自定义监控项(监控网站80连接数)

自定义监控项(监控网站80连接数) 需求:监控某台web的80端口连接数,并出图: 第一步:客户端创建脚本: 客户端定义脚本,并编辑zabbix-agent配置文件实现运行定义的脚本: 客户端设置 vim /usr/local/sbin/estab.sh //创建脚本 #!/bin/bash ##获取80端口并发连接数 netstat -ant |grep ':80' |grep -c ESTABLISHED ##netstat -ant是查看当前连接数,grep ':80'是过滤出80端口,g

使用SwingBench测试连接数以及修改连接数和pga

使用SwingBench工具对oracle环境进行压力测试,100个用户,就提示连接数不够: 后台日志报错: ? 1 2 3 4 5 Errors in file /oracle/admin/dbcc/bdump/dbcc_smon_3317.trc: ORA-00018: maximum number of sessions exceeded Thu May 29 09:14:50 2014 Adjusting the default value of parameter parallel_m

ios项目开发(天气预报项目):使用正则获取 weather.com.cn网站信息

[objc] view plaincopyprint?在CODE上查看代码片派生到我的代码片 <pre code_snippet_id="346208" snippet_file_name="blog_20140515_1_2220869" name="code" class="cpp">- (NSString *)hmacsha1:(NSString *)text key:(NSString *)secret {

tomact配置域名和端口直接访问网站

tomact配置域名和端口直接访问网站,就是使用域名解析到主机,通过端口执行网站地址,实现访问,在上一章节中发布了两个web项目,但是都是执行同一个根文件夹,通过 http://localhost:8080/项目名称   以这样的地址进行访问的. 下面通过配置Tomcat安装地址下的conf文件夹下的server.xml文件,实现绑定域名和指定端口到指向目录实现 域名加端口访问 网站 1.先配置两个虚拟域名.打开以下目录:C:\Windows\System32\drivers\etc 选中hos

MySQL查看当前连接数、连接数和最大连接数

MySQL查看当前所有连接的详细资料: mysqladmin -u root -p processlist MySQL查看当前连接数(Threads为连接数) mysqladmin -u root -p status Uptime: 1047464  Threads: 22  Questions: 1494780  Slow queries: 0  Opens: 31357  Flush tables: 1  Open tables: 1981  Queries per second avg:

获取客户端ip访问网站的次数和请求页面脚本

获取客户端ip访问网站的次数和请求页面 #/bin/bash cd /data/iplog/$1/pv txt=$(ls -l|awk '{print $NF}'|sed '1d') for n in $txt do ip=$(cat /root/iplist) for n1 in $ip do grep $n1 $n >>/opt/txt01/$n1-$1-cpv.txt done done rep_txt=$(cd /opt/txt01/&&ls -l *cpv.txt|a

VBS获取本地IIS中网站的信息(IP、端口、站点名称)

Dim W3SVC,WebServer,Bindings,ALLBindingInfo,fs,TextFilePath,WebSiteName On Error Resume Next Err.Clear Set fs = WScript.CreateObject("Scripting.FileSystemObject") TextFilePath = fs.GetFile(WScript.ScriptFullName).ParentFolder.Path & "\I

netstat监控大量ESTABLISHED连接数和TIME_WAIT连接数题解决

查看网络连接数: netstat -an |wc -l netstat -an |grep xx |wc -l        查看某个/特定ip的连接数 netstat -an |grep TIME_WAIT|wc -l    查看连接数等待time_wait状态连接数 netstat -an |grep ESTABLISHED |wc -l    查看建立稳定连接数量 查看不同状态的连接数数量 [[email protected] ~]# netstat -an | awk '/^tcp/ {

Nginx优化指南+LINUX内核优化+linux连接数优化+nginx连接数优化

Most setup guides for Nginx tell you the basics - apt-get a package, modify a few lines here and there, and you've got a web server! And, in most cases, a vanilla nginx install will work just fine for serving your website. However, if you're REALLY t