Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Anchor
oa_query_heading
oa_query_heading

...

Choosing Devices for Integration

The integration leverages Open-AudIT's query feature as a way of controlling the devices you want to integrate with NMIS. You can create a query specific to your needs, then tell the integration to use that query (by referencing the name or ID). For example, if you wanted to integration only devices running CentOS, you could use the following query in Open-AudIT:

 

 

 

 

 

 

 

 

Code Block
languagesql
SELECT * FROM system WHERE @filter AND system.os_family="CentOS"

 

Open-AudIT's nmis_poller field can help you manage an integration in a scenario where you have multiple pollersIn a scenario where your integration is distributed across multiple NMIS pollers, it's a good idea specify the poller that each device should integrate with. Open-AudIT (v?.?.?) provides an nmis_poller field on devices for this purpose. You could set your devices' nmis_poller field to be the name of a poller (perhaps using Bulk Edit) and then create a query for each poller that matches that poller's name.

...