The Solarwinds implementation I'm working in has been arround for many years. I know that most recipients of alerts toss the email into the trash. Not a good scene. I want to fix this. The obstacle is years and years of alerts set up and trying to deteremine what is valild not valid.
If anyone has insite or ideas on this kind of issue... I'm all ears. Here is my plan...
1. Develop a report that will count the number of alerts in a 24 hour period ( The idea is this way I will know how bad it is and be able to "see" any improvemnt as I progress). Now I don't see a canned report for this... I'm working on the following sql:
Select LogDateTime AS LogDateTime,ObjectID AS ObjectID, ObjectName AS ObjectName, Message AS Message
From AlertLog
Where
(Message Like '%Alert Triggered%')
AND
(LogDateTime BETWEEN 40267.3333333333 AND 40268.375 )
2. Focusing on WINDOWS boxes, create a running list, for each node identify all alerts that are involved with it. Now if there was a way of querying the DB to acheive this, I would be very happy.
3. Remove duplicates, update node contact info.
Performance on my Orion server is not great. I'm hoping this will help a little. I also figure our mailing server would not mind the less load.
Your comments/suggestions would be most appreciated!
Glenn.