Comments
-
OK, I think I understand. Do you know what view your installation uses to display the device you're assigning the poller to? I believe the default is "Node Details." Say you want the poller to show up on the Summary tab of the Node Details page. Find the row that says "Node Details - Summary." Put a check in the box in the…
-
OK, that suggests that it’s a problem with your browser, not with the code. I’ve tested this in Chrome 63.0, Internet Explorer 11, Firefox 57.0, and MS Edge. The icon is OK in all of them.
-
"SuppressUntil" is empty because no end time was specified when the node was muted. The node will stay muted until it's explicitly un-muted. That's the default behavior if a user just clicks Maintenance Mode - Mute Alerts Now, like this: The other columns could be empty if the alert had been muted a long time ago and the…
-
What do you see if you look at the detail page for those nodes? Is there an Asset Inventory page for those nodes? Does the number of CPU cores appear there?
-
Try the new template I posted here: SSL Certificate Expiration for specified URL any HTTP response This template will try to read the certificate details even if the server returns an HTTP status that is not 200/OK. This will let you check the certificate on a server that demands a login or returns 401/Not Authorized.
-
I suspect that both templates are encountering the same error, just reporting it differently. I also suspect that this is a symptom of the difference between a browser requesting a web page and a Powershell script calling a web page. You mentioned that your PC isn't authorized. The browser handles that error gracefully -…
-
I'm not aware of any way to do it with the Custom Query widget. If you're comfortable working in ASP and JavaScript, you could (I think) easily borrow the code from a Solarwinds page that includes a sortable grid and modify it to work with the query. Once you get that working, you can put it in an iframe in a custom HTML…
-
Hi Arturo, In NPM prior to version 12.4, you could acknowledge traps as follows*: * In the Solarwinds GUI, navigate to Alerts & Activity -> Traps to bring up the list of traps that have been received. * Check the box next to the trap you want to acknowledge. * Click the "Acknowledge" button. In NPM 12.4, I don't see any…
-
Interesting. How are you monitoring those servers? Are you using SNMP, ICMP, the Agent, or are you monitoring them through vCenter? On my report, the OS is empty under these conditions: * The server is an ESX host * The server is monitored only through vCenter ESX hosts run VMware's proprietary pseudo-operating system,…
-
Alert messages should be like the warning lights on an aircraft cockpit: they go off, and you reach for the checklist. Unrelated to anything in this thread: How can I teach my users to understand this? I've put a lot of time into crafting alert messages that explain exactly what node/app/component has a problem, and I…
-
Are there any firewall rules that would prevent your polling engine(s) from getting to the base URLs for those domains? If you open a browser on the polling engine that handles this app monitor, can you browse to (for example) https://123.123.0.123:443 ? If you can, does the browser throw up any warnings about the…
-
OK. What happens if you load the bar gauge monitor outside of the Custom HTML widget? What does the URL YOUR_SERVER/.../GroupMemberAggregateStatus.aspx show in a browser by itself?
-
Are you looking at the tables (and the query) with SWQL Studio or with a traditional SQL tool (SQL Query Analyzer, Solarwinds Database Manager)? You'll only see the Uri column if you're using SWQL Studio, because Orion.Nodes is an entity in SWIS (it's based on the Nodes view in the SolarwindsOrion database, but it's not…
-
How about this query? This will also get you the currently muted nodes, etc. Edited 2018-05-03 to account for variation in Orion.AuditingActionTypes.ActionTypeID across installations. Select N.Caption, Supp.SuppressFrom, Supp.SuppressUntil, LastMuteEvent.TimeLoggedUtc, AE.AccountID from Orion.Nodes N INNER JOIN…
-
Sorry, I wasn't clear. I'm asking about the "Web Display" step:
-
I just ran into this problem with the Alerts & Activity > Events page in NPM 12.1. I added the following to inetpub\SolarWinds\web.config under the <system.web> section: <location path="Orion/NetPerfMon/Events.aspx"> <system.web> <httpRuntime maxRequestLength="1048576" executionTimeout="300" /> </system.web> </location>
-
You'll have to select the columns with the details URL for the nodes and interfaces, and name them the way Solarwinds expects them. This query will do that: SELECT Interface.Node.Caption as [Node], Interface.Node.detailsURL as [Node|detailsURL], Interface.Name as [Interface Name], Interface.detailsURL as [Interface…
-
Good question. I've only used the Trap.Acknowledged field to disable alerts for a trap that never got a corresponding "everything is OK" trap. I don't think that Solarwinds used that field for anything. With the new trap handler (borrowed from Alert Manager), I don't even see a way to acknowledge traps through the GUI. I…
-
That should be plenty of time. Did you explicitly place the poller on a page when you assigned it to the device?
-
(sighs with relief) You're welcome. Glad it is doing what you need!
-
Sure! Here's what you should see:
-
Thanks!
-
I can't reproduce that problem. What happens if you just try the URL that retrieves the icon? This one should get the icon for a group with critical status ( ): https://your_server/Orion/StatusIcon.ashx?entity=Orion.Groups&id=0&status=14
-
This includes the node name (N.Caption): Edited 2018-05-03 to account for variation in Orion.AuditingActionTypes.ActionTypeID across installations. Edited 2019-05-31 to ensure that only mute events on nodes are considered. Select N.Caption, Supp.SuppressFrom, Supp.SuppressUntil, AE.TimeLoggedUtc, AE.AccountID from…
-
Sure. Refer to Node.AssetInventory.ServerInformation.OperatingSystem and Node.AssetInventory.ServerInformation.OSVersion, like this: SELECT [Node], [OS], [OS Version], [Total CPU Sockets], [Total CPU Cores], [CPU Vendor], [CPU Cores Per Socket] FROM (select N.Caption as [Node],…
-
You only need one copy of the template. You'd just assign it 3 times to each node, like this: Node 1 Assign template, configure it for website 1 Assign template, configure it for website 2 Assign template, configure it for website 3 Node 2 Assign template, configure it for website 4 Assign template, configure it for…
-
Do you mean you need to know the account ID that did it the previous time, not the current one?
-
Thanks. I did this, and there was nothing to install.
-
I have SWQL Studio 2.5.0.214. If you install the current Orion SDK, you'll get the newest SWQL Studio.
-
Yes, I think I'll stick with my query and just have it run frequently. My end users like to see their changes take effect in real time. Five minutes might be too long for them.