Hi everybody
i am new on SWQL.
i have two SWQL queries. how can i join these queries in one table to use on solarwinds dashboard ?
this query will return 30 node that have less than 70 day to their certificate expiration. this query doe not show node name.
-- query one
SELECT TOP 30 NodeID, ComponentStatisticData
FROM Orion.APM.CurrentStatistics
where ComponentStatisticData < 70;
now more information about node are displayed on another table
SELECT TOP 10 NodeId, IpAddress, Caption, Fqdn
FROM Cortex.Orion.Node
how can i join these two table to see full detail of my query.