Comments
-
Do you mean an execution plan in SQL?
-
I see no issues with an alert action powershell script reading a file. Note the script location and provide full or relative to that location path. Thanks, Christian
-
To be honest I have a UNIX background and after switching to a company that's mostly windows and ms products I have found Powershell more helpful. Our DevOps team focuses on Python and I'm good to go if need be but find Powershell invoke-restMethod and SQL functions far more familiar to bash scripting. I also find…
-
On the Map resources yes - for the general web console - not that I have uncovered. For maps - click Edit in the map resource then customize map tooltips to enter the variables for each type to asset
-
Well I remembered iisreset so that did it How would I get a filter for nodes custom properties I tried K=Appstack_Category_servers and with "FieldRefiD":"Orion.Nodes|MachineType" and that does work but no go on these(system is our custom property): "FieldRefiD":"Orion.Nodes|System"…
-
webcasts, evaluation guides, http://system.demo.solarwinds.com, manuals, download eval and set it up, add everything you have into eval, break eval and fix it, read what's new blogs to see new features, browse top ideas in NPM and SAM and what's coming blogs to see what's coming next Study for and pass SCP certification,…
-
tdanner - One piece of documentation I have not been able to find is around REST Query with Parameters Request usage. For example I want to include a SWQL query filtered on say nodeID IN (1,2,3,4,5,6,7,8) and have not been able to get the parameter to take the ( character. Thoughts?
-
I thought it was DNSBY?
-
Here's my suggestion - I set the scan timing to less then 4hrs since my Cisco's mac address cache empties out then - so this way if a device was EVER plugged into a port I should have IPAM/UDT record it for me instead of only when it happens to coincide with a scan event.
-
I Just had this happen with our ticketing system refusing to accept Solarwinds emails and create tickets- can't wait to replace it with Swis API. In the meantime I set a SQL ux monitor to query my ticketing system log table for can't create ticket text. We build such complex monitoring for a monitor to monitor the…
-
And here's some idea of what is going on in the backend looks like the Orion.AlertHistory gets an event type entry for both acknowledged and cleared while AlertStatus only gets the acknowledged info while it's active. SWQL query: SELECT AccountID, Case when EventType = 2 then 'Alert Acknowledged' when EventType = 7 then…
-
Not going to comment on the backend DB since it's in transition between old and new alert management and just confusing right now But click on the view alert details and you'll be able to see an option to un-acknowledge the alert with a description of what happens.
-
Just to confirm - do you mean to group them in the All UDT Nodes tree resource? If so then this will allow you to group by a custom property so if you build groups based on dynamic queries then you can likely create the same grouping here. How do you show your nodes grouped by in the All Nodes Tree in NPM?
-
It is no trouble as long as you are ok not getting the cool colored bar lines? http://thwack.solarwinds.com/message/194045#194045
-
I've done what you have before and it works. Vs a custom property this method puts the responsibility on you to add the subnets or IP's to the alert logic but anything added that matches will alert without needing any custom property changed. With the new web-based alert console you can create complex conditions but I…
-
sttill cannot find the labs forums without searching and the homepage recent content now only shows two pages worth
-
Not having to copy out of the DB the alert trigger condition to test and tune is priceless - The inverse is great - I added the new All Alerts this Object can trigger resource on my node details page. Now our app and platform engineers can see exactly what could trigger rather then rely on blind trust or worse have me ask…
-
To avoid duplicate tabular poller resources I generally only pick display for the first custom poller then set the remaining to "no" as I create them. Then as you go to edit the first poller you still see the remaining pollers assigned to the node(s) and check to display them in the table.
-
This is why I am training my users on how to create their own reports But management will still be in tableau where we can send data sources and they can interactively drag drop to define pivots and such.
-
Your groups defined manually or through dynamic queries? If the latter then it's possible to set up just standard reporting on the same field that using for the dynamic queries and then simply group the report by the top level fields such a city
-
I have to say I prefer basic WMI monitors but I might have a group of application servers moving to agent polling and desperate for flat file logs if you had an application monitor template for such a thing? I've just added a windows event log monitor to all my Orion servers for the SolarWinds.Net source but I have a year…
-
If events are an object in the alert drop down then post your query- if not and your just looking for when events occur then here's an idea: I created an alert today based on nodechildstatusparticipation table- trick is since this is not in the alert object list I had to create a SQL UX monitor component with my query…
-
have you attempted to use the snmpwalk from the program files/ Orion folder? this provides a counter of oid's responding so you can see if a device is responding or timing out.
-
What is the timeout period for your DNS settings and can you test dns query to them from your main poller ?
-
While you asked for a SQL query I do this with a SWQL query in a Custom Query resource (NPM 10.6 or later to support ToLocal function) SELECT n.caption as Node , '/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N%3a' + ToString(n.nodeid) AS [_LinkFor_Node] , '/Orion/images/StatusIcons/Small-' + n.StatusLED AS [_IconFor_Node]…
-
Is it hardware health model field you are looking for?
-
I can confirm that through web console or import if status is available then no custom field data is held. This actually cost me a day of trouble shooting when I tried importing spreadsheets in with available IP's-now I remove those first or set to reserved.
-
Agree with mharvey Though some queries will fail because your operator does not like coming across NULL values. In which case you can use the IsNull function like this: Select Region,SITECODE,CAPTION,Device_Type,MachineType,Notification from nodes WHERE IsNull(Environment,'') = 'Production' Would return any nodes where the…
-
look at the what we are working on for NTA module and you'll see better support for nbar- this is Cisco's DPI like tool and might bring some benefit over even DPI. what problems are you looking to solve?