kolide_admin_userkolide_audit_logkolide_auth_logkolide_checkkolide_deprovisioned_personkolide_devicekolide_device_groupkolide_device_group_devicekolide_device_open_issuekolide_exemption_requestkolide_issuekolide_packagekolide_personkolide_person_groupkolide_person_open_issuekolide_person_registered_devicekolide_registration_request
Table: kolide_device_group
Lists the groups of devices within your organisation, created by you.
Examples
Basic info
select id, namefrom kolide_device_group;
Find any empty of unused device groups
select id, namefrom kolide_device_group;where member_count = 0;
Find any newly created device groups
select id, namefrom kolide_device_group;where created_at > date_trunc('day', current_date) - interval '1 week';
Schema for kolide_device_group
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
created_at | timestamp with time zone | =, >, < | When this group record was created. |
description | text | =, ~~ | Longer-form description about this device group. |
id | text | = | Canonical identifier for this group. |
member_count | bigint | Number of member devices in this group. | |
name | text | =, ~~ | Human-readable name for this group. |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
title | text | Display name for this group. |