网站运行在IIS中
需要监控的内容:
1.访问量
2.访问出错次数
3.平均请求响应时间
3条回答 默认 最新
- threenewbee 2015-07-27 19:02关注解决 无用评论 打赏 举报
- oyljerry 2015-07-27 19:23关注解决 无用评论 打赏 举报
- yuke198907 2015-07-27 21:00关注解决 无用评论 打赏 举报
网站运行在IIS中
需要监控的内容:
1.访问量
2.访问出错次数
3.平均请求响应时间
收起
windows内带性能计数器和日志,就可以实现你说的功能,自己google下
利用ASP.NET的 Sessions Active counter.
- PerformanceCounter pc = new PerformanceCounter("ASP.NET Applications",
- "Sessions Active", "__Total__", "MYSERVERHOSTNAME.domain");
-
- while (true)
- {
- Console.WriteLine(pc.NextValue());
- System.Threading.Thread.Sleep(1000);
- }
有很多的开源产品,不需要自己弄吧
报告相同问题?