| Author |
Message |
Travis D. Liles
Guest
|
Posted:
Tue Jan 11, 2005 10:31 pm Post subject:
Alert Forwarding - Different Supression |
|
|
I have a two tier alert forwarding environment. The environment is globally
sperated which sometimes make communications a little less then they should
be. I know I have differences in Source Group rules to Desitnation Group
rules. I recieve an alert(s) stating that
"The following alert was not updated because it was supressed into the
coresponding alerts(original alert ==> "alert id" supressed alert id):"alert
id" ==> "alert id"
Is there any way to query MOM to get what the actual alert is by name
instead of the ID?
Thanks, |
|
| Back to top |
|
 |
James Morey
Guest
|
Posted:
Wed Jan 12, 2005 12:46 am Post subject:
Re: Alert Forwarding - Different Supression |
|
|
Using the MOM 2005 SDK
(http://www.microsoft.com/mom/downloads/sdk/default.mspx) you can use the
SDKAlertView Name property (from MOM Reference/MOM Data Access/MOM
Operations Database/MOM Operations Database SDKViews), something like:
SELECT *
FROM SDKAlertView
WHERE SDKAlertView.Name = "<alertname>"
This will return all of the properties for that alert by name.
To use the alert by name for scripting you can use the Alert.Name property
(from MOM Reference/Runtime Scripting Objects/Alert Object).
Is this what you were looking for?
--
=====================
NOTE - This posting is provided "AS IS" with no warranties, and confers no
rights.
James Morey | Microsoft | Windows & Enterprise Management Division
=====================
"Travis D. Liles" <TravisDLiles@discussions.microsoft.com> wrote in message
news:7FDC3EE1-6A82-4EF1-A299-03B639A6DB45@microsoft.com...
| Quote: | I have a two tier alert forwarding environment. The environment is
globally
sperated which sometimes make communications a little less then they
should
be. I know I have differences in Source Group rules to Desitnation Group
rules. I recieve an alert(s) stating that
"The following alert was not updated because it was supressed into the
coresponding alerts(original alert ==> "alert id" supressed alert
id):"alert
id" ==> "alert id"
Is there any way to query MOM to get what the actual alert is by name
instead of the ID?
Thanks, |
|
|
| Back to top |
|
 |
Travis D. Liles
Guest
|
Posted:
Tue Jan 25, 2005 9:11 pm Post subject:
Re: Alert Forwarding - Different Supression |
|
|
Not exactly. Here is the exact alert that is recieved
The following alert was not updated because it was suppressed into the
corresponding alert (original alert id ==> suppressed alert id):
9f4cdd8d-5e52-40e2-9d23-ee210e01bfd4 ==>
bde9f0bf-1dce-4149-92bb-d842bae7091d
MOM master management group:
"Management Group Name"
Error on: http://"servername":1271/connectorserviceV2.asmx
I can run a SQL Query to find the Alert. I use "Select * from Alert where
idAlert like 'insert Alert ID" This will return the rule associated with the
rule ID. However when I compare the destination group supression of the
alert to the source group supression of the alert, they are the same. So I
am not sure why this alert is being generated.
Thanks
"James Morey" wrote:
| Quote: | Using the MOM 2005 SDK
(http://www.microsoft.com/mom/downloads/sdk/default.mspx) you can use the
SDKAlertView Name property (from MOM Reference/MOM Data Access/MOM
Operations Database/MOM Operations Database SDKViews), something like:
SELECT *
FROM SDKAlertView
WHERE SDKAlertView.Name = "<alertname>"
This will return all of the properties for that alert by name.
To use the alert by name for scripting you can use the Alert.Name property
(from MOM Reference/Runtime Scripting Objects/Alert Object).
Is this what you were looking for?
--
=====================
NOTE - This posting is provided "AS IS" with no warranties, and confers no
rights.
James Morey | Microsoft | Windows & Enterprise Management Division
=====================
"Travis D. Liles" <TravisDLiles@discussions.microsoft.com> wrote in message
news:7FDC3EE1-6A82-4EF1-A299-03B639A6DB45@microsoft.com...
I have a two tier alert forwarding environment. The environment is
globally
sperated which sometimes make communications a little less then they
should
be. I know I have differences in Source Group rules to Desitnation Group
rules. I recieve an alert(s) stating that
"The following alert was not updated because it was supressed into the
coresponding alerts(original alert ==> "alert id" supressed alert
id):"alert
id" ==> "alert id"
Is there any way to query MOM to get what the actual alert is by name
instead of the ID?
Thanks,
|
|
|
| Back to top |
|
 |
|
|
|
|