Comments
-
Step: 1Main Menu → Alerts & Activity → Alerts → Manage Alerts → Add New Alert Step 2: Name: Checkpoint VPN Tunnel Status Change Description: Alerts when a monitored Checkpoint VPN tunnel goes down or comes back up Severity: Critical (for Down) — we'll handle Up separately or use same alert Enabled: ✅ Yes Evaluation:…
-
Option 1- Custom SWQL Resource (Known Monitored Nodes) If the endpoints in your conversations are **monitored Orion nodes**, you can build a custom resource that joins NetFlow data to the Nodes table to pull hostnames. ### SWQL Query — Top Conversations with Hostnames SELECT TOP 25 COALESCE(SrcNode.Caption,…
-
Since SWQL can't reach everything, combine **SWQL for standard alerts** with the **SolarWinds REST API** for broader coverage. ### Step 1 — Get Your Node List via SWQL SELECT N.NodeID, N.Caption, N.IPAddress, N.Vendor, N.GroupName FROM Orion.Nodes N WHERE N.GroupName = 'YourGroupNameHere' -- OR filter by custom property,…
-
Credential Coverage Report (Nodes with/without SNMPv3) SELECT N.NodeID, N.Caption, N.IPAddress, N.SNMPVersion, CASE WHEN NC.CredentialID IS NOT NULL THEN 'Has SNMPv3 Credential' ELSE 'No SNMPv3 Credential' END AS SNMPv3Status FROM Orion.Nodes N LEFT JOIN Orion.NodeCredentials NC ON N.NodeID = NC.NodeID AND NC.CredentialID…
-
Try this and let me if it works for you SELECT N.NodeID, N.Caption, N.IPAddress, N.SNMPVersion, CASE WHEN NC.CredentialID IS NOT NULL THEN 'Has SNMPv3 Credential' ELSE 'No SNMPv3 Credential' END AS SNMPv3Status FROM Orion.Nodes N LEFT JOIN Orion.NodeCredentials NC ON N.NodeID = NC.NodeID AND NC.CredentialID IN ( SELECT ID…
-
Take a look at this one: SELECT N.Caption AS [Node Name], N.Vendor AS [Vendor], N.MachineType AS [Device Type], N.IP_Address AS [Node IP], N.SysLocation AS [Location], I.Name AS [Interface Name], I.FullName AS [Full Interface Name], I.Description AS [Description], -- Status CASE I.AdminStatus WHEN 1 THEN 'Up' WHEN 2 THEN…
-
I am little confused here. So originally or some time ago, it was the SCP 500 Certified Professional Exam, correct me if I am wrong. So what exam would actually give you the equivalent or are they all that now under different modules or a new module. for Example the SW Observ Self Hosted Network Management or SW…