steampipe plugin install francois2metz/ovh

Table: ovh_log_self

Get the logs from recent API calls made from your account.

The ovh_log_self table can be used to query information about your recent API calls.

Examples

List logs

select
id,
date,
account
from
ovh_log_self;

Get a log

select
id,
date,
account
from
ovh_log_self
where
id = 'XXXXXX';

Schema for ovh_log_self

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
accounttextUser performing the action.
datetimestamp with time zoneDate of the log.
idtext=ID of the log.
iptextOrigin IP of the action.
methodtextMethod requested.
pathtextPath used for the action with project and object IDs.
routetextRoute used for the action.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.