-
Recurring Maintenance Schedule View/Query
As of 2025.2, we can now create recurring maintenance schedules for our nodes and alerts on daily, weekly, or monthly frequencies and assign them accordingly. However, there is no easy way for a user to view which nodes have upcoming maintenance or even just the assigned schedule definition. Through my own efforts in SWQL,…
-
Is There a Way to Disable WinRM in Node Properties?
In the properties of the Linux nodes in our environment, we manually disable WinRM when a new node is added. Is there a way to disable this via a script? I didn't see anything in SWQL Studio regarding WinRM. I imagine it doesn't technically matter if we leave it enabled seeing as how these are Linux nodes but it would be…
-
Obtaining trap configuration via SWQL or API
Is there a way to get the information under: Settings → All Settings → Product Specific Settings → Log and Event Settings → Traps → My custom rules via SWQL or API? I'm trying to find a way to self document (via python script) our server configuration to confluence. Also is here a way to programatically update these…
-
Allow any valid SWQL query to be a dynamic query in a group
Right now there are two ways to add items to a Solarwinds Group: You can add individual items or you can create a Dynamic Query using the query builder tool. The query builder doesn't support a lot of the queries I'd like to use. I should be able to use any valid SWQL to create a dynamic query. For example, if I want to…
-
SWQL script not working
Team, To display events summary on the custom widgets as the Top 10 events should display in CST time zone, I have created the below script but its not working. Please someone help on this. Thanks SELECT TOP 10 DATEADD(hour, -6, E.EventTime) AS [Time of Event], E.EventTypeProperties.Name AS [Event], E.Message AS [Message],…
-
Ability to auto configure KPI widget with array of values
In a modern dashboard, we are looking for a way to make a KPI widget grid/matrix using a single SWQL query. Currently each individual KPI widget value requires a SWQL query or Entity outputting a single value. So, creating a dashboard of KPI widgets requires adding many individual single KPI widget values each with a…
-
Modern Drill-Down Dashboard – Built for Real-Time Infra Insights
Hi THWACK Community! I’m excited to share a modern, fully drill-down Infrastructure Dashboard I recently built using SolarWinds. It’s designed to make day-to-day monitoring more intuitive, visual, and actionable. Key Highlights of the Dashboard: Fully Drill-Down Capable: Click on any KPI, widget, or chart to deep-dive into…
-
SWQL function ARRAYVALUEAT / SPLITSTRINGTOARRAY working in SWQL Studio, but fail in web based reporting
Hello Thwack Team, For the below working query - which works in custom swql dashboard resources and in swql studio, SELECT TOP 1 ARRAYVALUEAT(SPLITSTRINGTOARRAY(Replace('Part1-Part2-Part3-Part4','-','|§|§|')),0) as Field1, ARRAYVALUEAT(SPLITSTRINGTOARRAY(Replace('Part1-Part2-Part3-Part4','-','|§|§|')),1) as Field2, CONCAT(…
-
Report of all VMs / Nodes with Hardware detail
I am trying to get the hardware information in my nodes report. How do I get that? Any suggestions or ideas please? Here's the below screenshot which displays hardware information of any node on the node details page. Whether it is virtually hosted or a physical one. I was working on SWQL which gets the list of all the VMs…
-
Help Needed: Interface Error/Discard % Alert Not Working (SWQL & Widget)
Hi everyone, I’m trying to monitor interface health by calculating error and discard percentages in SolarWinds — specifically to alert when: InErrors%, OutErrors% InDiscards%, OutDiscards% are greater than 1%. I created a SWQL query to calculate these percentages using packet counters like unicast/non-unicast packets.…