tszilagyi

Comments

  • I have seen this document already, i was looking more towards something that would document out the exact GPO settings with the built in windows firewall rules that need enabled for monitoring to work. an example scenario would be the monitoring server and the server to be monitored are on the exact same VLAN and the only…
  • thanks for the info I am looking through this and have some experience with basic HTML and building SQL queries but have never worked with json, jquery or any thing else do you by chance have a basic example that pulls data from a node that's already in the database, looks like your query is already there and fully…
  • In my case I found that the variables were case sensitive. I just recently updated to 12.0 and my email alerts are still working.
  • Ok so i solved my own issue, after reading the following post Using a Macro for email alerts in Advanced Alert Manager i ended up having to alter the variable in the alert text from ${email} changed to ${node.email}
  • So i just tried to implement this at my site and by adding in the variable to the alert notification it ended up stopping all emails at my site for the alert Looking at the events for Orion i see the following So it looks like my system is not translating the variable into what is saved in the custom filed. I tried using…
  • Ok i found some code that I was able to put together that seems to solve this issue. Posing it here if anyone has any improvements or could use it as well. $sufixes = @('list1', 'list2', 'list3') $svr_list1 = "svrA", "svrB", "svrC" $svr_list2 = "svrD", "svrE" $svr_list3 = "svrF", "svrG" $svc_list1 = "svcA", "svcB"…
  • Forgot to mention to give greater control of who receives email alerts I plan to pull from Malik Haider post. will update here when i finally have a chance to play with it. Using Custom Properties sending Alert emails Edit #1 So i finally got around to testing this and it works almost as expected. The only issue i had was…
  • Finally the WMI monitor that i mentioned. I also have it setup to make sure that perfmon data doesn't stop reporting in on a system. This one was actually really simple, setup the following WMI monitor in my basic template then setup an alert as such This way if anything stops reporting in i can get an alert and try to fix…
  • Next up i updated my disk monitoring and alerting, for this one i borrowed from Alex Soul Initial post is here Universal Monitoring and Alerting on free space for all logical disks across all servers he has a second one here Universal Disk Free Space Monitoring (One Template Will Handle All Logical Disks + Exceptions And…
  • so this one was based on the same concept as the CPU alert that i used but I really didn't have any secondary monitoring item to clear up alerts. so in this case i took a look at my chatty servers and found that most of them would alert when they got down to about 4% memory available. so i used the below SQL in an alert…
  • Next was info from Leon Adato in the below post The Ultimate CPU Alert - there's a lot there but its worth the read. I took his info and modified it a bit for some info i found online and for my environment So for my setup s changed it out a bit and i have a template that is monitoring the processor CPU utilization and the…
  • Ok so i wanted to swing back around on this for anyone else who may be looking for similar info and post what i have done so far. First of all i read through the info jkuvlesk posted and also to jpr7311's question i had already disabled the application alerts leaving only the component alerts, but we were still getting a…
  • I know this is an old post but i was looking for the same info and found this post first, so just in case any one else ends up in the same boat I'm in. I was trying to pull the last time a server rebooted as well as the last time windows updates were installed. But i was running into the same UTC issue. It does not appear…
  • I am looking for something similar as well. Based on how were setup It would be a great help to setup and say that if a specific application template is having an issue then mark the node itself as down.
  • so a little more info I have a SQL query that returns several text responses i am trying to find a way to insert return these and display them within the html page. kinda an example would be that it would return the name of a monitored component, a status text, detailed status description and then a date time stamp. I am…