steampipe plugin install grendel-consulting/kolide

Table: kolide_registration_request

Lists the registration requests made when attempting to register a device with Kolide. These can be approved or denied by admins.

Examples

Basic info

select
id,
status,
requested_at,
requester_message,
requester_id,
device_id
from
kolide_registration_request;

List all unresolved requests

select
id,
status,
requested_at,
requester_message,
requester_id,
device_id
from
kolide_registration_request
where
status != 'approved';

List all recent requests

select
id,
status,
requested_at,
requester_message,
requester_id,
device_id
from
kolide_registration_request
where
requested_at > date_trunc('day', current_date) - interval '4 weeks';

Schema for kolide_registration_request

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
device_idtextCanonical identifier for the device the person is trying to register.
end_user_denial_notetextAny explanation the admin provided for the requester when denying this request, for internal documentation. It is meant to be shown to the requester. It will be blank if the registration has not been denied.
idtext=Canonical identifier for this registration request.
internal_denial_notetextAny internal explanation the admin provided when denying this request, for internal documentation. It is not shown to the requester. It will be blank if the registration has not been denied.
requested_attimestamp with time zone=, >, <When this registration approval was requested.
requester_idtextCanonical identifier for the person who requested this registration.
requester_messagetext=, ~~Any message the person provided when requesting approval for this registration.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustext=, ~~Current status of this registration request; one of: pending, approved or denied
titletextDisplay name for this registration request.