Comments
-
Little bump here. Does no one else have this issue? I've seen this before in other environments too and never thought much about it, but even after the upgrade to NPM 12.0.1 we are still seeing this issue. It makes no sense...
-
**UPDATE** This post is old. A couple of people in my company saw this post and were probably gonna start updating the database had I not gotten involved :-) Now, as of version 12.1 (maybe as of version 12.0 or even sooner maybe) you can go to "Settings > Web Console Settings" and put in the web address you want alert…
-
Anyone have any input on this? Preferably someone from SolarWinds but anyone knowledgeable about this quirk would be fine. I suppose I could open a Support case but since I don't think it is a bug so much as an oversight on either my part or SolarWinds, I was hoping someone on Thwack could shed some light on this oddity.
-
You probably found your answer by now, but for anyone else like me who was looking for a way to do this and found your unanswered post, I figured I'd share how I found the answer. Unmanage data is in the Orion.Nodes SWQL Entity table, so that's no problem, but if a Node is Muted, that's a whole different story…
-
In addition to mrs.alterego's simple explanation, it's important to understand that there is core functionality that all Orion modules share. Orion is a suite of products created by SolarWinds. To understand this you can think of Microsoft Office. Microsoft is the company, Office is a suite of tools. Microsoft makes other…
-
The security level of your API calls are directly related to the security level of the SolarWinds account you are using to make those calls. When you authenticate against the API you are simply sending a username/password of a user account in the SolarWinds web console. Whether that is an Orion Individual Account, or an AD…
-
EDIT: Nevermind, found this post here: Scheduled Discovery Results polling IP wrong We're seeing the same thing with some Linux servers we just changed over to Agent polling. I scanned them using Discovery so I wouldn't have to click on each one and do a List Resources, but I'm worried about importing them when they show…
-
If you aren't afraid of a little SWQL, this should give you all the info you need: Alerts · solarwinds/OrionSDK Wiki · GitHub You'll basically want to query the AlertHistory table for AlertObjectID's that have both a 1 and a 2 EventType. You can join (or navigate through SWQL) to the AlertObject and AlertConfiguration…
-
Not really sure what you're asking. If you are asking how to see Interface Utilization for an individual interface then you just click on that interface in Orion and you will go to that Interface's "Interface Details" page. From there you can see all the info you need about that interface, including its utilization, speed,…
-
Do you own an Additional Polling Engine License? If you have paid for that with SolarWinds and it isn't showing up as an available option to download in your Customer Portal you should create a Support Ticket with SolarWinds to get that fixed. Yes, you can now get the file directly from your main poller with the new NPM…
-
Try this instead: i.LastRunStatus <> 1 AND i.LastRunDate > ADDDAY(-2, GETDATE()) SWQL doesn't know what you want subtracted when you just say GETDATE() - 2. Two what? Days, hours, minutes, milliseconds? It has no way of knowing. In SQL you would do something like DATEADD(d, -2, GETDATE()) but in SWQL they have specialized…
-
Bumping this to try and get some visibility, especially a SolarWinds guru like LadaVarga, aLTeReGo, Leon Adeto, or tdanner that can possibly answer this.
-
Did you ever find this? I need the same thing.
-
Did you download and try the ones from the NPM Content Exchange on this site (Thwack)? I seem to remember using them before and found them adequate. I feel like I had to tweak and add to them a bit, but that they were a good starting spot. If you don't see a poller you want just duplicate one of the Eaton pollers and then…
-
We keep having this issue as well. I undo our VMAN integration, redo it and it's fixed for a bit, but then it happens again. I know it's been a while, but did you ever find a solution to this? I don't even understand why breaking the VMAN integration and redoing it helps since Hardware Health is polled by Orion itself.…
-
The "Choose What To Monitor" portion of the Discovery wizard shown in your screen shot is for choosing what Interfaces to monitor. That won't exclude whether or not a printer or copier gets added in as a node, it will simply exclude the printers' or copiers' interfaces from being monitored. The nodes themselves would still…
-
Here is some documentation showing CASE is supported in SWQL. It's from the OrionSDK Wiki which I highly recommend you take a look at. TDanner and crew have done a great job with it so far. I feel like it was listed in the old SWQL Documentation too, but I can't find the documentation now. As far as the snippet that you…