eronwright
Check me out on the web at Point2 Technologies or at my blog.
I am the Chief Architect at Point2 Technologies, located in Saskatoon, SK, Canada. We provide a business solution for the real estate industry called the National Listing Service.
I am a long-time fan of the .NET Framework, with a particular interest in Web technologies, emerging web platforms such as Live, identity services, manageability, virtualization, and tooling.
I am a long-time fan of the .NET Framework, with a particular interest in Web technologies, emerging web platforms such as Live, identity services, manageability, virtualization, and tooling.
Making Applications Manageable – Turning Your Death Model into a Health Model
Apr 09, 2007 at 10:22 PMPursuant to this discussion, check out this great batch of videos regarding Operations Manager 2007. My favorites:
Making Applications Manageable – Turning Your Death Model into a Health Model
Apr 09, 2007 at 7:19 AMCorrect. You instrument your application with appropriate events and performance counters, such that its health can be assessed by management software such as MOM.
If you are using MOM, developers should build a management pack as they go along. A typical pack will contain rules for monitoring performance thresholds (based on your counters, of course), watching for events, performing discovery of running instances of your application, probing your application periodically, etc. In addition, so-called knowledge articles detail the likely causes of error, possible resolutions, etc.
MOM provides a lot of .NET-based extensibility points for managing your application. Indeed, a management pack is similar to a unit test project in how much code can conceivably be written. I see it as an equally important part of an overall application.
Making Applications Manageable – Turning Your Death Model into a Health Model
Apr 05, 2007 at 10:30 AMSome clarification/background:
Windows has great low-level instrumentation services, notably performance counters, event logging, and WMI. These constitute the 'standard' Windows instrumentation interface.
The .NET Framework already has good low-level support for Windows instrumentation, notably in System.Diagnostics. You can, today, publish events and ticks and expose WMI interfaces.
Microsoft Operations Manager (MOM) is the premier software for managing Microsoft software-based business systems. It is like an "expert system" in that it contains vast knowledge about specific server products such as SQL Server, Exchange, IIS, Windows Server, etc. That knowledge is embodied in so-called Management Packs. Microsoft provides and periodically updates the packs for its entire line of server products.
The MOM user experience is based around the notion of a "health model" with which MOM assesses the health of your solution. The individual management packs assess a given application's health in any way they see fit, but primarily they use - surprise - the above-mentioned Windows instrumentation services.
For a given business system, you are encouraged to write MOM packs for your custom applications. Your pack must formulate a health model for your application. Building an abstract description of the model then generating instrumentation code and a management pack would be great functionality. Indeed, it is what this video describes.
Hope this helps! Use MOM!
Ric Merrifield - Microsoft gets down to business with Motion initiative
Apr 12, 2006 at 10:13 AMI posted some links to additional information on my blog.