vote up 5 vote down star
2

Are there any good(and free) tools for either analyzing static source or running programs to help detect memory leaks?

I've built some windows services and want to make sure the are not going to consume memory if I leave them running for weeks on end.

flag

1  
Would the garbage colllector not eventually pick them up? – James Jul 17 at 12:22
1  
Not if you're keeping references to them around. eg: It can happen if you're creating objects with events, and then attaching event handlers. If you don't remove the event handler, the object won't get cleaned up. – Will Hughes Jul 17 at 12:27
The type of leak he needs to look for is objects that keep growing in size, where he keeps a reference to the object lying around. Also, he could have bugs in his code related to unmanaged resources that he'd want to detect, and there's been at least one bug in the .NET runtime related to that (CopyFromScreen method leaks 1 handle each time), so I assume he wants to check for things like that. – Lasse V. Karlsen Jul 17 at 12:28

7 Answers

vote up 1 vote down check

Doesn't meet your requirements of being free, but there's one by Red Gate I think is worth suggesting - ANTS Memory Profiler

I've used a number of their tools before (some on trial, some we've bought) and found them to be very good.

link|flag
vote up 1 vote down

Redgate Ants Performance Profiler might help. It isn't free... but there is a 14 day trial which may be enough to get your services working.

link|flag
vote up 1 vote down

I can recommend http://memprofiler.com/, but it is not free.

link|flag
vote up 0 vote down

Profile Sharp is a free (open-source) performance and memory profiler for .NET

link|flag
vote up 0 vote down

Let your service run and use Performance Monitor to collect information about the memory usage of the service. Also, if you use any unmanaged resources make sure your code properly disposes of these resources using IDisposable. In an unmanaged environment you can easily have leaks by simply forgetting to release pointers, but that is not possible in a managed environment. However, if you keep allocating new objects and keep references to them so they cannot be garbage collected your service will require more and more memory.

link|flag
vote up 0 vote down

I've used Microsoft's CLR Profiler with some success. Make sure to read its documentation to get the full benefits.

link|flag
vote up 0 vote down

Don't forget that you can use the Windows Task Manager to detect at least the presence of memory leaks in your service.

Another way to use the Task Manager to track objects it to switch to the Processes tab, then go to View > Select Columns and check USER Objects and GDI Objects (GDI probably not useful to you since you're running a Service, but others may find it useful.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.