steampipe plugin install francois2metz/scalingo

Table: scalingo_log_drain

A log drain is a remote URL where scalingo push logs from an application.

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

Examples

List log drains of an application

select
url
from
scalingo_log_drain
where
app_name = 'caresteouvert-api';

Schema for scalingo_log_drain

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
app_idtextID of the application.
app_nametext=Name of the app.
urltextURL to the remote log management service.