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

Table: detectify_connector

This table contains information about connectors and their configurations in Detectify.

The token_v3 argument is required to use this table, meaning you need to create an API key for v3 on Detectify.

Examples

List all connectors

select
id,
name,
team_token,
provider,
created_at,
updated_at
from
detectify_connector;

List connectors with their last run status

select
id,
name,
last_run ->> 'status' as "last_run_status",
last_run ->> 'error' as "last_run_error",
last_run ->> 'completed_at' as "last_run_completed_at"
from
detectify_connector;

Count connectors by provider

select
count(*) as connectors,
provider
from
detectify_connector
group by
provider;

Schema for detectify_connector

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
created_attimestamp with time zoneTimestamp when the connector was created.
idtextUnique ID of the connector.
last_runjsonbDetails of the last run of the connector.
nametextName of the connector.
providertextProvider of the connector.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
team_tokentextTeam token associated with the connector.
updated_attimestamp with time zoneTimestamp when the connector was last updated.