views:

209

answers:

3

Hi,

Is there a .NET equivalent for monitoring and management - similar to JMX?

+1  A: 

You can find a JMX port to .net in Codeplex (NetMX).
And a related article in CodeProject.

cedrou
A: 

There is Microsoft .Net Events but I'm afraid that you'll have to build the eventing into code. Not that easy. Wish that there was an attribute that you could add to "enable" monitoring of that specific method.

Albert T. Wong
+2  A: 

Try WMI, accessible through the System.Management namespace in .NET.

Jordão