l-teles/detectify
steampipe plugin install l-teles/detectify

Table: detectify_member

This table contains information about users who have access to the Detectify platform.

Examples

List all users / members

select
concat(first_name, ' ', last_name) AS name,
email,
authentication,
role,
last_login
from
detectify_member;

List the users that have never logged in

select
concat(first_name, ' ', last_name) AS name,
email,
authentication,
role,
last_login
from
detectify_member
where
last_login is null;

Group users by authentication method

select
count(*) as users,
authentication
from
detectify_member
group by
authentication;

Schema for detectify_member

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
authenticationtextAuthentication method used by the user.
createdtimestamp with time zoneTimestamp when the user was created.
emailtextEmail address of the user.
first_nametextFirst name of the user.
last_logintimestamp with time zoneTimestamp when the user last logged in.
last_nametextLast name of the user.
roletextRole of the user.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
user_tokentextUnique token of the user.