Table: freshping_user
List users who have access to the Freshping organization.
Examples
List users
select id, name, rolefrom freshping_user;
List admin users
select id, namefrom freshping_userwhere role = 'Admin';
List read-only users
select id, namefrom freshping_userwhere role = 'Read Only';
Schema for freshping_user
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
disable_alert_emails | boolean | Has the user disabled alert emails. | |
disable_weekly_report_emails | boolean | Has the user disabled the weekly report email. | |
text | Email of the user. | ||
id | bigint | Unique ID of the user. | |
name | text | Name of the user. | |
role | text | Role of the user. |