steampipe plugin install grendel-consulting/kolide

Table: kolide_exemption_request

Lists the exemption requests made when a user desires to permanently ignore a specific issue or set of issues on a single device. These can be approved or denied by admins.

Examples

Basic info

select
id,
status,
requested_at,
requester_message,
requester_id,
device_id,
issues
from
kolide_exemption_request;

List all unresolved requests

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

List all recent requests

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

Schema for kolide_exemption_request

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
denial_explanationtextAny 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 exemption has not been denied.
device_idtextCanonical identifier for the device the person is trying to register.
idtext=Canonical identifier for this exemption request.
internal_explanationtextAny internal explanation the admin provided when approving or denying this request, for internal documentation. It is not shown to the requester. It will be blank if the exemption has not been denied.
issuesjsonb
requested_attimestamp with time zone=, >, <When this exemption was requested.
requester_idtextCanonical identifier for the person who requested this exemption.
requester_messagetext=, ~~Any message the person provided when asking for this exemption.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustext=, ~~Current status of this exemption request; one of: open, withdrawn, approved or denied
titletextDisplay name for this exemption request.