Comments
-
Sure, below I have a query, the first column is the node caption, and I try to find the location using a case statement in 2 ways. Location1 looks for the numeral anywhere in the name, Location2 looks for it as the second character with the substring function. SELECT N.Caption, Case when N.Caption like '%3%' Then 'UK' when…
-
Completely separate platforms today. SolarWinds Service desk is a SaaS. Sometime in the future I bet there is an Orion SaaS that talks to it, but I don't see SolarWinds Service desk going on premise.
-
I don't see a a way to get that done, but I will watch this thread if someone finds one.
-
I don't use it myself, so I have nothing to share directly, but for applications that don't have templates ready, you typically will build your own. In this case I am betting you are running it on Linux, so I'd pick a Linux script monitor component, and use the reference from the product to pick the metrics that I want to…
-
I think its 1 url per widget, so put each value with a unique link in its own widget. This might be a good feature request.
-
Do these help? See Import/Export Modern Dashboards or Importing/Exporting Modern Dashboards for additional information. Pulled it from the (+) Modern Dashboards - The Orion Platform - THWACK - SolarWinds Community
-
So the first thing I would check is the authentication. Make sure the account works outside of the 3rd party product.
-
No, you can install the agent on other devices and run netpath from them. It doesn't even have to be an engine. Create a NetPath probe in NPM (solarwinds.com)
-
Take a look at: SWQL Covert bytes to GB - Orion SDK - The Orion Platform - THWACK - SolarWinds Community Let me know if you get stuck
-
That should be the right endpoint, I use the powershell version from the SDK's module, and its a little picky but it works.
-
I have never sorted that out, but I would looked at Windows Event Logs Windows RDP-Related Event Logs: Identification, Tracking, and Investigation | Ponder The Bits
-
You have limited options, best I can recommend is 15 dynamic queries each with 1 rule, which is terrible but will work. Set them up like below, and the 3rd octet is 1-15 in each rule. And double check my math calculating the subnet.
-
Install the certificate for SSL onto the server, then re-run the configuration wizard, this time selecting the https configuration. It will do the work for you. Take a look at: Configure the SolarWinds platform Web Console to use HTTPS And if you think people might have links that still look at port 80 Automatically…
-
I prefer to use powershell, take a look at the post by @"KMSigma.SWI" (+) PowerShell to Update Captions - What features am I missing? - Orion SDK - The Orion Platform - THWACK - SolarWinds Community If I were writing your script, I would Connect to Orion, pull in a list of nodes to check, loop through each to see if the…
-
Does this work? (+) Triggered Alert History - Last 30 Days - Reports - The Orion Platform - THWACK - SolarWinds Community
-
So lets break it down a bit, you found the right place to add the script, but now that script needs to send the right output. Take a look at: (+) The Basics of PowerShell (part 2) - Geek Speak - Resources - THWACK - SolarWinds Community (+) The Basics of PowerShell (part 3) - Geek Speak - Resources - THWACK - SolarWinds…
-
Last time that happened to me, it was after an upgrade and something didn't register right. First validate that somebody else who can make a dash sees what you do. Then I recommend re-running the configuration wizard. That was my fix. Obviously, this is also worth a ticket with support as well.
-
I do not think that you can change the assignment, I think the only time that items are set for the incident is on creation, with the exception of status when the alert is acknowledged or when the alert clears. It would be cool to do that though, maybe create a feature request?
-
When polling status is wrong, the first thing that I do is unmanage and then manage the node again. Status should change and you will get a new next poll time when you re-manage. You can also move it to a new polling engine if you have one. If that doesn't do it, you may need to restart the polling engine. If that fails, I…
-
First the easy part, when you get the data from Orion into the table, use "Data Aggregation" to group the rows correctly. Customize a table for web-based reports (solarwinds.com) Since you want interfaces, I would use that as the source of the data and you should be able to see enough Node details as well though the GUI…
-
So what you have on that chart is a bunch of polled values, I think the default is 2 seconds. The spike are the only data that it has, and the graph doesn't "smooth" because when you need that level of detail you might want to know when polling is missed. It only grabs polling data that frequently while the page is loaded.…
-
I don't think you are missing it, I think Groups needs to be improved. Personally I want SWQL available there. Here is a band aid, ugly but will meet the need. Use an alert to add populate a custom property to nodes that need to be in the group. So I start by creating a new alert, and I se the SWQL alert type since it can…
-
What are you trying to summarize? VMan is the Orion module that collects data from VMWare or Hyper-V. What types of objects are you looking for, maybe hosts? VMs?
-
I think I saw for a minute you wanted a pie chart, and I bet you figured it out, but if you want to summarize for a modern dashboard SELECT Count(Disk.PhysicalDiskID) as [Disks], Disk.OperStatusDescription as [Disk Status] FROM Orion.SRM.PhysicalDisks disk Where Disk.StorageArray.Name like 'YourArray' Group By…
-
Can you use the built in one? Otherwise you can query SWQL SELECT Description, PhysicalDiskID, StorageArrayID, ID, Name, Vendor, Model, Type, SerialNumber, Capacity, OperStatus, OperStatusDescription, Status, LastSync, Spare, StatusDescription, Disk.StorageArray.Name FROM Orion.SRM.PhysicalDisks disk Where…
-
This is a harder question than it sounds. The answer starts with "It depends.. " which is hard to hear but truthful. Lets start with what I don't know: -What Orion products are you running? I see SAM, NCM and NTA, but if you have those three you likely have NPM. If so, what version of syslog capture are you running, the…
-
Licensing is maybe a hurdle, but if you own any of the Service Now ITOM features you might be able to leverage the Service Graph Connector for SolarWinds. Check with your service now account people. It will do the heavy lifting and gets regular updates. ServiceNow Store If you are looking to build your own, I can say that…
-
@seashore I found the same, SDK upgrades fixed it.
-
Also go get content from other people, read this: https://thwack.solarwinds.com/product-forums/the-orion-platform/f/orion-sdk/92479/importing-exporting-modern-dashboards And try some of these dashboards out: (+) Modern Dashboards - The Orion Platform - THWACK - SolarWinds Community
-
So there are many ways to get this done. On the older dashboard, there are some filters you can add to scope the built in widgets. I used to use a group to hold the servers and applications based on the name of the template a lot. With modern dashboards I find that making SWQL that is filtered makes the most sense for each…