开发者

library/API recommendation for adding instrumentation in code

开发者 https://www.devze.com 2023-04-12 14:02 出处:网络
If I want to add some instrumentation in my code for getting metrics like how long a particular method took to execute, anyone has recommendation for either wind开发者_如何学编程ows build-in or any 3r

If I want to add some instrumentation in my code for getting metrics like how long a particular method took to execute, anyone has recommendation for either wind开发者_如何学编程ows build-in or any 3rd party library?


I've seen this done with PostSharp AOP framework, hooked into Windows Performance Counters (System.Diagnostics.PerformanceCounter). One of their introductory pieces of sample code shows how to do this:

http://www.sharpcrafters.com/solutions/performance

This might be a good option if you want to deploy these measurements to production and measure performance in a live manner (to do diagnosis of a running system).

If you just want to locate bottlenecks in your code, and don't need to do live diagnosis, I suggest you simply use a profiler, such as the one built into VS or Ants Profiler (as Chris already suggested). Then run a redacted copy of your production data against your code so your performance measurements match production.


If you want this at runtime, you should probably use a profiler offline. I'd avoid doing any instrumentation where possible as it takes time and therefore causes more performance problems.

Google for RedGate ANTS Profiler or JetBrains dotTrace. If you have VS2010 Premium, it has one built in. That will give you a method-level breakdown of what is happening time-wise.


Generally a profiler will take care of measuring performance.

If you need to measure time yourself StopWatch with some sort of tracing is often enough.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号