steampipe plugin install francois2metz/freshping

Table: freshping_user

List users who have access to the Freshping organization.

Examples

List users

select
id,
name,
role
from
freshping_user;

List admin users

select
id,
name
from
freshping_user
where
role = 'Admin';

List read-only users

select
id,
name
from
freshping_user
where
role = 'Read Only';

Schema for freshping_user

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
disable_alert_emailsbooleanHas the user disabled alert emails.
disable_weekly_report_emailsbooleanHas the user disabled the weekly report email.
emailtextEmail of the user.
idbigintUnique ID of the user.
nametextName of the user.
roletextRole of the user.