Comments
-
I do roughly the same with several alerts - critical alert set to status of critical and warning alerts set to status of not critical and not up so it catches the rest of the values. You can also set a reset action so you get an email or ticket when it goes into critical or such and another when it leaves it. I hope you…
-
Once you increase your licenses and find you wan to keep metadata for interfaces but not alarm you can always set them to unplugged.
-
Even if you switch to UCS which has parent/child for blade and chassis from Orion out of box still does not put that on the AppStack. Alterego knows that I suggested a cluster layer to include physical blade chassis but I think we are in the minority with everyone else moving to virtual and cloud. If you walk the…
-
Allen, No consulting and no support on this PowerShell - use on a test system and all other stern warnings Start your PowerShell off by pulling in the CSV file and calling out the headers - I found this was needed even though it should have been able to handle headers in the file. Then you can Here's what I used in front…
-
Don't forget to take into account the asset inventory polling date time. its dot walkable from many of the asset inventory tables so easy to add a where statement like where daydiff(Your table.polling.lastpollingdate,getdate()) < 2 I found some of my results where from older stale asset inventory data till I ran this.
-
Mine disappear if I edit a report from my Mac.
-
try this- ${SQL:SELECT c.name FROM npm_ucschassis c inner join[dbo].[NPM_UCSPsus]p on p.parentid=c.id where p.parenttype = 0 and p.parentid = ${ParentID}}
-
If they are coming from a DHCP server scan then it might still be cached - I would recommend starting a support case so they can review your settings and logs.
-
I've modified my alerts many times over the last few weeks and have not had any alert actions occur again. Maybe I'm getting senile
-
So where are you entering these in EOC? A report and then embedded on a page?
-
I just had the same issue where NCM 7.4.0 in the bundle would not install due to a supposed version mismatch. Guess what...NCM module reports version as 7.4.2.
-
Recreate it with SWQL -right now it's filtering based on template names but I need to use something closer to assignment. Until we have something better, , can you point me in the direction of where template tags are stored in SWQL? Thanks, Christian
-
Sorry to add to an old post- while I am able to get this to work after doing the above steps (winrm quickconfig, set client) I would prefer to run this as a powershell script only on the local orion poller and allow it connect with UNC path to the remote system. For example rather then using this which works with remote…
-
I don't know Zack - you had me through step 3 but then I figured this could be done as a single step join. This is just some thought without trying the actual query... Select distinct nodeid, caption from nodes Left join volumes v1 on v1.nodeid=nodes.nodeid and v1.volumetype = 'fixed disk' and v1.volumename like 'C:/%'…
-
In addition to the above OID's this is what the tabular custom poller resource looks like
-
What polling method are these nodes? It's possible that it was introduced in GA release. I am still on the RC version of NPM 11.5 /Core 2015.1.0 and not affected.
-
Yup. Just insstalled SRM module and now we need to map those into service now. Argh. Find physical array in SN and Solarwinds and map those first by serial, ip, or serial. work through the abstract relations on each and map those. end goal - make a change request for a netapp array and service now will tell you which…
-
What was the responding and lastsync time on those volumes? Just wondering if it's due to a highly dynamic environment reassigning volumes often and orphaning your last ones? Easy to see based on those values.
-
indeed - sometimes my english no so good
-
Deal. Alterego gets the points. But assist to anyone who can help me confirm that the dbo.AlertObjects or Orion.AlertObjects are the best tables to pull historical Alert Notes from? Hockey points so the assist is worth the same.
-
Links, tooltips and search the only thing left on my wish list is swis access to views vs just tables assuming the indexing would increase performance on query heavy pages?
-
Relevant: https://thwack.solarwinds.com/community/solarwinds-community/product-blog/blog/2011/10/23/orion-performance-best-practices--part-1-monitoring-the-102-polling-engine http://www.solarwinds.com/documentation/en/flarehelp/sam/default.htm#orionapmagtemplateorionserver.htm
-
There does not seem to be a StatusLED or even a status at all in the engines view which is why I added polling completion rate and min since last keep alive. Solarwinds will need to chime in as to what their metric is for choosing engine status led. That said I still prefer the application resource as you can then include…
-
Sure but where? We have a script lab but it's mostly SWIS SDK - SWQL custom queries are not really scripts. Have you considered a SWQL lab forum?
-
Sorry I just relooked and realized I had the same issue and found that if I remove the carat it works -
-
We can figure it out- do you have the SDK downloaded - SWQL Studio will allow you to test and get better error messages. Likely you'll need to change out any variables for actual group names. Thanks, Christian
-
So then every week your discoveries add the same objects that you delete each week? Sounds like you are still in the GUI too much - turn on auto-import, script your deletes, insert those same ones into ignored tables then they only ever get deleted once.
-
I've asked the Thwack gods to create us a group to discuss all things Network Sonar Discovery and hope to get lots of input there - as for specific ServiceNow integration - I am just starting the project now but have been working with SN api's over the last year for another CMDB project and have some experience. Both our…
-
I have found my best results now to be; * Add the FI VIP address as ICMP node but with UCS creds * Add each FI as snmp node WITHOUT UCS creds (when I added more then one device with UCS creds it duplicated database records) * Add node CMIC ip-mgmt address nodes by ICMP * Add node OS ip addresses by SNMP * Create a group…
-
I just got done a custom SQL alert that was a bear. the scary kind. You need to delete your select statement so it joins in with the SQL alarm select- meaning you need a rewrite to join your containers table to the interfaces table they select from. Your entry should just be joins and then the where statement. And I would…