Wednesday, April 19, 2017

How can we measure the bandwidth for Ms Dynamics CRM?



We have to measure the bandwidth that Ms Dynamics CRM use. Does anybody know if there is an application for this issue or another way through our server?
(Windows Server 2003 R2)


Answer



There is a nice article on http://blogs.iis.net




Measuring incoming and outgoing bandwidth per Application Pool




IIS has a per Web-Site performance counter that measures bandwidth ("Web Service", "Bytes Received/sec" and Web Service", "Bytes Sent/sec"). The problem is that this only measures the bandwidth for requests that make it to user mode. All requests that get cached by HTTP.SYS in kernel-mode will not be measured.
The good thing is that HTTP.SYS has the same performance counters ("HTTP Service Url Groups", "BytesReceivedRate" and "HTTP Service UrlGroups", "BytesSentRate").




The blog post also contains a PowerShell script that creates a nice output of bandwidth usage of each application pool.


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...