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_issue
Lists the issues created when a device fails a check; some checks, when they fail, will produce multiple Issues, each with a unique primary_key_value.
Examples
Basic info
select title, detected_at, blocks_device_at, resolved_at, exemptedfrom kolide_issue;
List all unresolved issues
select title, detected_at, valuefrom kolide_issuewhere resolved_at is null;
List all device-blocking issues
select title, detected_at, valuefrom kolide_issuewhere blocks_device_at is not null;
List all ignored issues
select title, detected_at, valuefrom kolide_issuewhere exempted = true;
List devices with open issues
select device_id, count(device_id) as countfrom kolide_issuewhere resolved_at is nullgroup by device_id;
Schema for kolide_issue
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
blocks_device_at | timestamp with time zone | =, >, < | When the device will be blocked from authenticating by this failing issue, or null if the check is not configured to block authentication. |
check_id | text | =, ~~ | Canonical identifier for the check this issue relates to. |
detected_at | timestamp with time zone | =, >, < | When this issue was initially detected. |
device_id | text | =, ~~ | Canonical identifier for the device this issue relates to. |
exempted | boolean | = | Whether this issue has been granted an exemption. |
id | text | = | Canonical identifier for this issue. |
issue_key | text | =, ~~ | Primary key that distinguishes one issue from another in the context of a single check; only applicable for checks that can produce multiple issues. |
issue_value | text | =, ~~ | Primary identifying value that distinguishes one issue from another in the context of a single check; only applicable for checks that can produce multiple issues. |
last_rechecked_at | timestamp with time zone | =, ~~ | When this issue was last rechecked. |
resolved_at | timestamp with time zone | =, >, < | When this issue was resolved, or null if still open. |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
title | text | =, ~~ | Descriptive title for this issue. |
value | jsonb | Relevant data that describes why the device failed the check. |