steampipe plugin install grendel-consulting/kolide

Table: kolide_person

Lists the people within your organisation, who may not necessarily have access to the Kolide dashboard (see kolide_admin_user). Devices may be registered to a person

Examples

Basic info

select
id,
name,
email,
has_registered_device
from
kolide_person;

Find me which people have not been authorised recently

select
name,
last_authenticated_at
from
kolide_person
where
last_authenticated_at <> date_trunc('day', current_date) - interval '4 weeks';

Find me which people have no devices

select
name
from
kolide_person
where
has_registered_device = false

Schema for kolide_person

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
created_attimestamp with time zoneWhen this person record was created.
emailtext=, ~~Recorded email addresss for this person.
has_registered_devicebooleanWhether or not this person has at least one reigstered device.
idtext=Unique identifier for this person.
last_authenticated_attimestamp with time zone=, >, <When this person last authenticated with Kolide.
nametext=, ~~Human-readable name for this person.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextDisplay name for this person.
usernamesjsonbAny usernames imported from the SCIM provider associated with this person.