Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the .NET equivalent of JMX?

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

like image 887
DLauer Avatar asked Aug 17 '09 10:08

DLauer


People also ask

What is JMX integration?

The JMX technology provides a simple, standard way of managing resources such as applications, devices, and services. Because the JMX technology is dynamic, you can use it to monitor and manage resources as they are created, installed and implemented.


2 Answers

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

like image 76
Jordão Avatar answered Oct 01 '22 02:10

Jordão


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

like image 37
cedrou Avatar answered Oct 01 '22 02:10

cedrou