steampipe plugin install grendel-consulting/kolide

Table: kolide_audit_log

Lists the tracked events occurring in the Kolide web console.

Examples

Basic info

select
timestamp,
description,
actor_name
from
kolide_audit_log;

List all events from the past day

select
timestamp,
description,
actor_name
from
kolide_audit_log
where
timestamp > date_trunc('day', current_date) - interval '1 day';

List all events performed by a specific user

select
timestamp,
description,
from
kolide_audit_log
where
actor_name = 'Dennis Nedry';

Schema for kolide_audit_log

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
actor_nametext=, ~~Name of the entity triggering this event.
descriptiontext=, ~~Description of the event that occurred.
idtext=Canonical identifier for this audit log event.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
timestamptimestamp with time zone=, >, <When this event occurred.
titletextDisplay name for this event.