Comments
-
2026 and this STILL would be great to have. Yes, NPM polls LLDP information but NCM is NOT able to view this data currently. The fact that this is not natively available within NCM really hampers the Config Change Templates. Would be great if we could get this information readily available. As it is - the only way to hack…
-
I've not heard of anything yet.
-
Hey! Sorry to take so long to respond. You should be able to have the script output the XML response for each device instead of doing an update against the SWIS endpoint. Near the bottom of the script find this line:…
-
Really would love to see this functionality in SolarWinds. There are so many vendors that only support XML.
-
That report wont give you the specific services and processes would it? It's just a list of the installed software but not necessarily the running pieces? The issue is that we have a ton of apps that need monitored but noone has taken the time to create specific templates. I am not in a position where monitoring is my…
-
I am not 100% convinced this is a user pause because from what I have seen - this has indeed paused actions for the whole platform. I could be wrong and not be fully verifying but I swear alerts dont trigger when I have that active. The other thing you can do is you can setup a maintenance window for all of the monitored…
-
In what way is it not compatible? I am running solarwinds HCO 2024.2.1 and applied it to a server running server 2022 - it is polling with no issues?
-
This is what the other products are doing as well in the industry. Would be nice to see it get updated along with new functionality. Otherwise your still using several different tools to get the full picture.
-
Definitely! I was just hoping the new Map widget would accomplish some of this and sadly it does not. I am looking to redo my classic dashboards to modern dashboards as much as possible. This is a show stopper for some dashboards outright!
-
Ah, well I ignored that and applied it anyways. It works but agreed official stamp of support would be outstanding. I have upvoted this feature request but dont let it stop you from using it. I have so far not seen anything "off" about it on a server running windows server 2022 os.
-
I should be sharing this by end of the month then at the latest. I agree there is not much scripting examples beyond what is in the official Github repo for IPAM. Your own github has helped me tremendously over the past 4 years!!
-
I wanted to advise that while on 2024.2.1 officially there is no fix there is a workaround you can do via the API. I have been battling this bug as it also exists on 2025.1.1 and it is frustrating. The issue is that the KPI widget pre 2024.2.1 version when using the link code added the following code to the end of the KPI…
-
Very nice! I am going to test this out. I have been trying to tweak and optimize a list resources automated job that is running too long. I want to have the ability to use this to check the last time the node list resources was ran for a device.
-
While this being built in would be amazing - I have used the API sample scripts that @"chad.every" mentioned and created my own list resources script. The job results are an XML format and once you study the XML Tree it is able to be iterated over to make whatever choices you want. You can download what I created here from…
-
Hey, I am going to do a shameless plug of my own script that I developed for this exact requirement in my own environment. You can do this via the SolarWinds SDK via powershell (you can do it via the python version of API but I use powershell). See my script…
-
Did you get this resolved? Is this something unique to the 2025.1.1 or something else? Looking to upgrade from 2024.2.1 and am evaluating 2024.4.1 or 2025.1.1.
-
I had a simliar issue to this and just figured it out today. If you havent gotten anywhere with this - try to do review your password you are passing. If it contains any illegal characters such as " or ' that would normally need escaped in JSON format then you should redo the password for the account used for polling. This…
-
I had a simliar issue to this and just figured it out today. If you havent gotten anywhere with this - try to do review your password you are passing. If it contains any illegal characters such as " or ' that would normally need escaped in JSON format then you should redo the password for the account used for polling. This…
-
EDIT: Nevermind! I figured it out!!! hahahahahahahahahah! I now have the interfaces being added - and ONLY the ones that I wanted! Now, I have a great framework to run on a schedule anytime to keep my interfaces up to date, ensure all nodes have the relevant pollers selected and keep my volumes clean and relevant! This…
-
I am getting the same thing - did you ever get a resolution? I am about to open a support case but was curious before I did.
-
Ah - got it. Thats what I get not for not paying attention better myself. Its still going to be great having it built in - trying to sort through all of the custom apps for this to determine whats relevant and still works is a pain. Appreciate the update.
-
Good info to know but really? We have to wait until 2026 for it to be better out of the box? Yeesh.
-
How odd but also very nice! Unfortunately my organization does not utilize SD Wan or Silver Peak hardware so I am not able to advise further on that. Hopefully someone else can have insights into that! Glad the Juniper switches are reporting correctly now.
-
How long after config was applied did you start seeing the data? I am running into this EXACT same issue, have used the new commands to modify our SNMPv3 view on a test switch and just curious how long I need to wait. Update: It took about 30 minutes for this to start working on my system. I was just being impatient since…
-
Go to add Resource for the page view and see if you have a Hardware Details with Hardware Health category.
-
So for our cisco devices it does not show up under the node details section. We use the Hardware Health polling to get it so its under the Hardware Details widget on the node page. It shows up as "Service Tag" and when we run reports we include both the Serial Number field and the Service Tag field since its model…
-
I do not have any juniper devices in my environment but we recently setup the SerivceNow Graph connector and all of our Palo Alto/Cisco devices have the Serial Number being populated appropriately. This particular integration was designed by ServiceNow - see if their support team can assist on what to modify as when we…
-
Recommend downloading the Orion SDK and using SWQL Studio to get a feel for what you can pull from. Also read about the API here: Orion SDK - Github link Lots of really good tutorials are also on this site as well as answers to formulate specific requests. Have a search after reading and familiarizing yourself further - I…
-
Apologies my original answer got flagged as spam - awaiting an appeal. In meantime here is a powershell way to perform this action. You can modify however you want. #connecting to SolarWinds API on localhost $swis = connect-swis -username $username -password $password #build the query to get scope of ports to update from…
-
You will need to add values for the $username and $password field or swap out the $swis line for whatever you use to authenticate. This is how you would do this via Powershell. If I were to put this into production in my own environment then I would want to wrap this in YAML to then have Ansible Tower make this available…