steampipe plugin install grendel-consulting/kolide

Table: kolide_device_group

Lists the groups of devices within your organisation, created by you.

Examples

Basic info

select
id,
name
from
kolide_device_group;

Find any empty of unused device groups

select
id,
name
from
kolide_device_group;
where
member_count = 0;

Find any newly created device groups

select
id,
name
from
kolide_device_group;
where
created_at > date_trunc('day', current_date) - interval '1 week';

Schema for kolide_device_group

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
created_attimestamp with time zone=, >, <When this group record was created.
descriptiontext=, ~~Longer-form description about this device group.
idtext=Canonical identifier for this group.
member_countbigintNumber of member devices in this group.
nametext=, ~~Human-readable name for this group.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextDisplay name for this group.