
A device group is just a logically concept (a list, really), and it is configured on each LogPoint node individually. I’m pretty sure that a device group indeed cannot include devices from another LogPoint node; it would have its own, local device groups.
However, that shouldn’t prevent you from running queries and alerts against the other node and its devices, as the device groups aren’t necessary to do that. The query I use to find devices not sending logs is
| chart count() by device_name, device_ip ORDER BY count() DESC | filter "count()" = 0 | fields device_name, device_ip, count()
so by running that from your “main” LogPoint against the repos on the main and the remote LogPoint you should get a result for all devices not sendings logs on either. To make it a bit more convenient, you could create you own version of a Device Group as a LogPoint list on your main server, and for example call it MY_WINDOWS_DEVICES, then include the name of all your Windows devices on that list, and modify the query to:
device_name IN MY_WINDOWS_DEVICES | chart count() by device_name, device_ip ORDER BY count() DESC | filter "count()" = 0 | fields device_name, device_ip, count()
Turning all of that into an alert is a bit trickier, but hopefully it gives you a starting point.
4 comments