Hello Team, can someone advise me if it is possible to create a NCM Custom SWQL Query to tell me the NCM node status = " Up & warning Devices" in the report.
Certainly possible.Usually NCM statuses would be like Job statsus, Compliance, etc. the Platform Core/Node status is probably what you wantSELECT whateverYouWant, n.caption, n.statusFrom Orion.nodes NWhere N.status in (2,3)Or similar using the graphical editor
There's almost certainly a OOTB report along these lines to copy
I am getting query not valid.
replace the '=' with 'IN'Orion.Status IN (2,3)
Orion.Status IN (2,3)
Hi Chad,
I want to add date and time in same report, could you please help.
I would recommend downloading and installing the OrionSDK "SWQL Studio" tool if you have not already.
Releases · solarwinds/OrionSDK (github.com)
It would allow you to see all of the entities and what properties are available to add. That way you could see if there was a DateTime property available in the entity you're using.