Hi,
we have the requirement to alert on Virtual Center events like if resources are being moved.
Is this somehow possible to do with Orion? Possibly even having an overview? Has anyone done this so far?
Hello Questionario,According to this thread, events can be accessed as text files on vCenter server or through vCenter database. Depending on actual location you can use Windows/Linux script monitor to monitor log files or "SQL Server User Experience Monitor" to execute custom query and check if some event was logged during past X minutes.
Unfortunately SQL monitor gives you only a numeric value so you would have to use some query such as:
SELECT COUNT(EventID) FROM Events WHERE Time > current_time_minus_poll_frequency AND Type = 'resource moved'
and alert only on number of such events.
Thanks Jiri!