Comments
-
Yes please! While we've been able to do a lot with the excellent SAM template available on Thwack, and some Universal Device Pollers, it would be very helpful to see more native support for these devices. Specifically, we'd like to see more support for monitoring the hardware, beyond the batteries and temperatures (e.g.…
-
This is absolutely still relevant, as Windows DHCP services specifically do NOT replicate reservations automatically. So, there has to be a way to manage the reservations on both servers in a failover design and keep them in sync. You can manually force a failover (via MMC or Powershell) from one server to the other, but…
-
There seems to be little in the way of integration between IPAM and other Solarwinds platform modules, other than UDT. And while that integration is great, there is a lot more information IPAM could (and should) link into from NPM, SAM and NCM, in particular; probably others as well. We need to see a reduction in…
-
Be sure to vote for both items to ensure your voice is heard!
-
I would like to see this idea expanded to include information on changes to subnets and groups; i.e. who made a change to this object and when. Similarly for IPAM reservations; we have a lot of reserved addresses (not DHCP reservations), but there is currently no way to track who made these reservations, and when. I expect…
-
More granular permissions would be a huge plus. What would be even better would be true role-based permissions; e.g. here's a list of all the possible permissions for all the active modules; tick the boxes that are appropriate, save all that as a role, then assign the role to users/groups. Right now if I have a user that…
-
The list of supported devices is pretty short; Cisco and Juniper. It seems to be a feature that doesn't really get much attention. We are moving exclusively to Aruba switches, and its tough to find a product that supports them for vulnerability scanning, without investing in Aruba's own solution. Maybe that's part of the…
-
I will keep voting on every instance of this particular feature request until it gets implemented. Please help us prevent spam!
-
Note that this item has also been requested here: thwack.solarwinds.com/.../support-for-cisco-callmanager-14-5-for-cdr-reporting
-
We really need this option. Its hard enough to get your team to look at alerts without getting empty emails thrown in the mix.
-
A related issue is that once you select a column sort on, there appears to be no way to go back to an unsorted order. Really, I'd be fine if there was a way to leave it sorted as configured by an ORDER BY statement in the original query, but once you've set it once your stuck having to sort it by something.
-
I like the 'Jamie Oliver 30 minute meal' format; i.e. "You could spend three hours figuring out how to do this thing, but we'll show you how to throw it together in 10 minutes!"
-
I've been trying to get a global filter working based on a custom property, similar to the example provided in the article you reference, but the filtering seems to be ignored. I don't get an error, so I expect my syntax and naming is correct. It simply has no effect, regardless of the value I use for the filter. I have…
-
Senior Techincal Analyst with a specific focus on monitoring and asset management.
-
We're in the same boat. We're currently running 14SU1 and that broke the reporting from CUCM. Apparently this is a 'known' issue with v14.x, but there are are significant reasons to move forward with newer versions of CallManager (security vulnerabilities being among them). We are already planning on implementing 14SU2, so…
-
I've gone ahead and created a feature request for a better way to manage VMAN related custom properties. Feel free to add your vote to it if you'd like to see this feature added ... some day! Managing custom properties for a virtual machine - Feature Requests - Virtualization Manager (VMAN)
-
Thanks for the clarification; I just wanted to be sure we were discussing the same things. Apparently the issue with the Save button has been identified (see this thread) and is planned to be fixed in an upcoming SR. BTW, this kind of discussion is why I love THWACK!
-
Good to know. Thanks for the update!
-
I actually didn't have this widget on my group page previously, and I have tried removing and re-adding it multiple times. I find it interesting that your widget still shows as "Orion Map" while I have no widget by that name. Just semantics, but its a thing. Regardless, I can't get this to work regardless of what group I…
-
Just tried this after upgrading to v2024.4. And while the options are all there, and work as shown, clicking SAVE does nothing unless you actually select a map from the bottom section. Which, of course, defeats the whole purpose.
-
Just tried this process after upgrading to v2024.4. The widget now appears to be called "Intelligent Map" and adding it does indeed show the "Map name format" section and allows you to select an option (e.g. ${Name}). But after doing so, clicking SAVE doesn't do anything. You can click it all day long, with no effect. It…
-
Has anyone tried this recently? I just upgraded to v2024.4, with high hopes that this would work now. The "Map Name Format" section appears and allows you to select an option (e.g. ${Name}). But while the SAVE button then shows up, clicking it will not do anything; you can click it all day long, and nothing happens. That…
-
Great work! I also took a stab at this, based on the examples provided by the new widgets created from this base Drilldown widget; e.g. AWSTopology and AzureTopologyWidget. However, after playing around with the 'UNION' approach to dissecting the various statuses, I realized I could do the same thing using your example as…
-
I actually opened a ticket regarding a related issue recently. While not the same, it did indicate that the relationship between DHCP Scopes and DNS Zones imported from Windows have a tentative relationship with the objects in IPAM. In my case I found some DNS entries related to IP addresses in IPAM where the zones didn't…
-
A good starting point would be KMSigma's SolarWinds Orion Accounts report. The embedded SWQL in the report shows the tables the information is being pulled from. That said, the report only captures the high-level "Orion" rights, and not the rights for individual modules. And that's where managing rights in the SolarWinds…
-
I'm personally not concerned about batch updates; the tools provided for that are quite adequate. I'm looking for an easy way to quickly update these values for an individual VM. Basically something that looks like the VM Custom Properties widget, but allows for updates. I'd be happy with a widget that runs an…
-
Unfortunately, I believe Adam's response is correct, but I really don't like it. I want an easy way for our Virtualization team to go in and update these fields, without having to wade through the 'Manage Custom Properties' pages. If anyone has an alternative, I'd be really, really interested to hear it. There has to be a…
-
So.... FYI. The 'Enable SNMP neighbor scanning' under the subnet scan settings is basically an on/off switch for all subnet neighbor scans. Disabling that setting disabled the neighbor scanning for any subnet where I had unset 'Disable Neighbor scanning' (nice double-negative in this case). So, the essential logic is: * To…
-
Thanks for your analysis. I have resorted to a lot of what you mention; e.g. routing through the tables to see what information I can extract from where. Part of my frustration comes from Solarwinds touting more integration between UDT and IPAM in the more recent releases, but this basic (in my mind, at least)…
-
So, yeah; I was over-thinking this one. I realized I just had to change my logic a bit for my reset trigger: SELECT Nodes.Uri, Nodes.DisplayName FROM Orion.Nodes AS Nodes WHERE Nodes.NodeID IN (SELECT DISTINCT NodeID FROM Orion.Nodes WHERE HOURDIFF(LastSystemUpTimePollUtc,GETUTCDATE()) < 1) This essentially just checks if…