steampipe plugin install francois2metz/scalingo

Table: scalingo_cron

A cron task is a command executed at a scheduled interval.

The scalingo_cron table can be used to query information about cron tasks, and you must specify which application in the where or join clause using the app_name column.

Examples

List cron tasks of an application

select
command
from
scalingo_cron
where
app_name = 'caresteouvert-api';

Schema for scalingo_cron

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
app_nametext=Name of the app.
commandtextThe cron expression followed by the command.
last_execution_datetimestamp with time zoneDate of the last execution.
next_execution_datetimestamp with time zoneDate of the next execution.
sizetextThe size of the one-off container.