OpenUMR – Cross Monitoring Integrator

If you not only want to connect OpsMgr to Nagios with my connector but other management systems to OpsMgr than the OpenUMR can perhaps help you.

It does more than just creating  alerts in SCOM: it even creates the correct objects for the alerts.

More infos: http://openumr.codeplex.com/

Posted in English, Operations Manager, System Center | Tagged , , | 1 Comment

System Center Operations Manager 2007 R2 Authoring Resource Kit

Vor Kurzem hat Microsoft das OpsMgr Authoring Resource Kit unter  http://www.microsoft.com/downloads/details.aspx?FamilyID=9104af8b-ff87-45a1-81cd-b73e6f6b51f0&displaylang=en bereitgestellt.

Es beinhaltet neben der bereits auf der R2 CD enthaltenen Authoring Console folgende Punkte:

  • Management Pack Best Practice Analyzer
  • Management Pack Spell Checker
  • Management Pack Visio Generator
  • Management Pack Diff
  • Management Pack Cookdown Analyzer
  • All References Add-in
  • Workflow Analyzer
  • Workflow Simulator

Also ein paar interessante Ergänzungen!

Posted in Deutsch, Operations Manager, System Center | Tagged , , , | Leave a comment

PreInfo: SCOM2Nagios 1.3

The new version is released here: http://www.mbaeker.de/category/tools/scom2nagios/

The next release will address two feature requests:

  1. Possibility to change the hostname (you don’t use fqdn host names in nagios…)
  2. Possibility to use more than one service in nagios (you want to separate the alerts for dns and acitve directory)

I will try to solve both by using “processing instructions”. This instructions will use the scom alert as an input filter and the nagios alert as the object to manipulate.

This instructions are defined in a xml file:

<?xml version=’1.0′ encoding=’ISO-8859-1′?>
<instructions>

<!–
field:
scom: path (of monitoringobject), fullname (of monitoringobject), severity, state, name (of alert), description
nagios: text, host, service, state

compare:
contains, containsIgnoreCase, equals, equalIgnoreCase

–>

<instruction>

<input field=”path” compare=”contains”>DNS</input>
<output field=”service”>DNS</output>
</instruction>

<instruction>
<input field=”state” compare=”equals”>255</input>
<output field=”text”>Everything is OK :-)</output>
</instruction>

</instructions>

What do you think about this feature?

The main code is ready. It even compiles without problems… Next step is testing – but currently I have no operations manager test system with a connected nagios…

Posted in English, Operations Manager, SCOM2Nagios, System Center, Uncategorized | Tagged , , , , | 22 Comments

Hostdatei zu DNS Einträgen umwandeln

Ich hatte die Anforderung eine relative lange Hostdatei in DNS Einträge auf einen Windows DNS umzuwandeln. Natürlich war ich zu faul zum Abtippen. Mit dnscmd.exe und einer Batchdatei ist das auch nicht mehr nötig:

for /f “tokens=1-4” %%a in (%1) do (

echo %%a – %%b – %%c

dnscmd.exe DNSSERVER /recordadd %%c /createPTR A %%a
)

Die Hostdatei muss etwas angepasst werden: Unnötige Kommentarzeilen entfernen und mehrfache Leerzeichen durch ein Leerzeichen zwischen den Hosteinträgen ersetzen (z.B. search und replace von zwei Leerzeichen durch ein Leerzeichen und das mehrfach).

Beispielzeile:

IP-Adresse DNSHosteintrag NetbiosName

Falls in der zweiten Spalte bereits der NetbiosName steht, dann oben anstatt %%c %%b schreiben.

Versteht dass hier jemand??

Posted in Uncategorized | Tagged , , , | Leave a comment

Vorträge zu System Center

Etwas Eigenwerbung: Ich darf nächste und übernächste Woche zwei Überblicksvorträge zu System Center halten. Die Vorträge finden in Markdorf und Karlsruhe statt.

Noch sind noch wenige freie Plätze verfügbar.

Details und Anmeldung unter: http://www.its-technidata.de/DE/IM_FOCUS/VERANSTALTUNGEN/Seiten/default.aspx

Posted in System Center | Tagged | 2 Comments