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_person_open_issue
Lists the unresolved and unexempted issues created when a device owned by a specific person fails a check; some checks, when they fail, will produce multiple issues, each with a unique primary_key_value.
You will need to provide a valid person_id
for all queries to this table.
Examples
Basic info
select title, detected_at, blocks_device_at, resolved_at, exemptedfrom kolide_person_open_issuewhere person_id = '12345';
List all device-blocking issues
select title, device_id, detected_at, valuefrom kolide_person_open_issuewhere person_id = '12345' and blocks_device_at is not null;
Schema for kolide_person_open_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. |
person_id | text | = | Canonical identifier for the person whose device this issue relates to. |
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. |