Comments
-
@techmanjon85, Try this: With that, if these BGP syslog messages came in: May 14 18:35:32: %BGP-5-ADJCHANGE: neighbor x.x.x.x Down User reset May 14 18:35:40: %BGP-5-ADJCHANGE: neighbor x.x.x.x Up That will do the rule. Unless you want specific rule for BGP UP and BGP DOWN. Variables that you can use for the email action:…
-
These are the predefined WPM alerts the moment you installed WPM. Since you have uninstalled it, you may want to check is these WPM pre-defined alerts still exist on your Advance Alert Manager. If it does, try deleting these WPM alerts.
-
Not sure what you got. Mine is working when I paste that query:
-
If you want to see Transmit OR Receive Percent Utilization equal or more than 95%, use SQL Filter. Edit the Resource and enter the following under Filter Interfaces field: OutPercentUtil >= 95 OR InPercentUtil >= 95 I don't have Transmit OR Receive Percent Utilization over 95%, but you may check this as reference.
-
klc2009, can you check the following: 1. If you ping the firewall from the Orion server, are you getting replies or timeout? 2. Knowing that you can do list resources and shows resources to select, it means SNMP is good. About the interfaces that says unreachable, does this interface shows UP status from the list…
-
Not sure if this will help you, TTL. There is a table in NPM database that stores triggered alerts, that is AlertLog table. If you are looking to just see the alert for Node object, you may filter it based on ObjectType nad include the columns you want to see. This is what I currently have just to see the alertname…
-
Can you give an example of the syslog message when a BGP is shutdown, and when it is came back up (establish)? I setup a syslog alerting before, but it is about OSPF state change from FULL to DOWN. The way I did this is from the Syslog rule, used the filter *FULL to DOWN* under Syslog Message Pattern field and left the…
-
Try to run this in Orion Database Manager. See if this is what you are looking for: SELECT Events.EventTime AS EventTimeUTC, Events.EventType, Events.Message, DateAdd(MINUTE,DATEDIFF(MINUTE,GETUTCDATE(),GETDATE()), Events.EventTime) as EventTimeServer FROM Events WHERE Events.EventType = '1' ORDER BY Events.EventTime DESC