Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 570 Bytes

kolide_device_group_device.md

File metadata and controls

35 lines (28 loc) · 570 Bytes

Table: kolide_device_group_device

Lists the member devices within a device group.

You will need to provide a valid device_group_id for all queries to this table.

Examples

Basic info

select
  name,
  hardware_model,
  serial
from
  kolide_device_group_device
where
  device_group_id = '12345';

List the devices in this device group whose users have been notified of resolvable issues

select
  name,
  hardware_model,
  serial
from
  kolide_device_group_device
where
  device_group_id = '12345'
  and
  auth_state = 'Notified';