turbot/steampipecloud
steampipe plugin install steampipecloud

Table: steampipecloud_process

Allows to track various activities performed on an identity in Steampipe Cloud.

Examples

Basic info

select
id,
identity_handle,
identity_type,
pipeline_id,
type,
state,
created_at
from
steampipecloud_process;

List processes that are being run by an identity pipeline

select
id,
identity_handle,
identity_type,
pipeline_id,
type,
state,
created_at
from
steampipecloud_process
where
pipeline_id is not null;

List user processes

select
id,
identity_handle,
identity_type,
pipeline_id,
type,
state,
created_at
from
steampipecloud_process
where
identity_type = 'user';

List running processes

select
id,
identity_handle,
identity_type,
pipeline_id,
type,
state,
created_at
from
steampipecloud_process
where
state = 'running';

Schema for steampipecloud_process

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneThe time when the process was created.
created_byjsonbInformation about the user who created the process.
created_by_idtextThe unique identifier of the user who created the process.
idtext=The unique identifier for the process.
identity_handletext=The handle of the identity.
identity_idtext=The unique identifier of the identity to which the process belongs to.
identity_typetextThe type of identity, can be org/user.
pipeline_idtextThe unique identifier for the pipeline if a process is for a pipeline run/execution.
statetextThe current state of the process.
typetextThe type of action executed by the process.
updated_attimestamp with time zoneThe time when the process was last updated.
updated_byjsonbInformation about the user who last updated the process.
updated_by_idtextThe unique identifier of the user who last updated the process.
version_idbigintThe current version ID for the process.