Dear All,
We are modern dashboard inthe tool, we want to overall infra percentage in dashboard could you please suggest the same.
Thank You
karunakar
Please review the link below; it will help you.
Modern Drill-Down Dashboard – Built for Real-Time Infra Insights - THWACK
Like this?
A KPI widget based on below SWQL query:
SELECT ROUND((100.0 * COUNT(N1.NodeID) /( SELECT COUNT(N2.NodeID) AS Nodes FROM Orion.Nodes AS N2 WHERE N2.Status NOT IN (11,9,27) -- Unmanaged, external and disabled ) ),2) AS PercentOK FROM Orion.Nodes AS N1 WHERE N1.Status=1 OR N1.Status=2 -- Up or Warning
Hi Team,
we are looking total infra percent for the customproperty field in environmen like LAN & WAN infra upercent detials.
Not sure I fully understood the question, but here is a new version where we filter to only show nodes where the custom property field "environment" is LIKE "%LAN & WAN%". Hope that at least give you the guidance to adjust according to your need:
SELECT ROUND((100.0 * COUNT(N1.NodeID) /( SELECT COUNT(N2.NodeID) AS Nodes FROM Orion.Nodes AS N2 WHERE N2.Status NOT IN (11,9,27) -- Unmanaged, external and disabled ) ),2) AS PercentOK FROM Orion.Nodes AS N1 WHERE N1.Status=1 OR N1.Status=2 -- Up or Warning AND N1.CustomProperties.environment LIKE '%LAN & WAN%'
Alert Cleared.htmlHello, I would like to share the HTML template details we have prepared so that Solarwinds alarms can become more meaningful. It can list alarm object details and connected device details separately in HTML template. Except for object and device details, you can easily add custom property information…
Cisco ASR Devices.pollerCisco ASR Devices
SWQL is built on the framework of SQL and as such supports most of the standard clauses as part of a query. A very simple example query is: SELECT Caption, IPAddress, Vendor, ResponseTime FROM Orion.Nodes Dissecting this query is relatively straightforward: show some fields (Caption, IP address, Vendor, and Response Time)…
Active SSL Tunnels-ASA.UnDPThis poller *should* display the number of Active SSL VPN (Anyconnect) Tunnels currently connected to your box. However, I tried it with my 5520 running 8.0.4 and for some reason I get a OID Not Supported. Here's my post in the forum: *EDIT* This is confirmed working with at least Interm release…