steampipe plugin install francois2metz/scalingo

Table: scalingo_log_drain_addon

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

The scalingo_log_drain_addon 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 and the id column.

Examples

List log drains of an addon

select
url
from
scalingo_log_drain_addon
where
app_name = 'caresteouvert-api'
and id = '60a4ab3d406c12000eed29e7';

Schema for scalingo_log_drain_addon

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
app_idtextID of the application.
app_nametext=Name of the app.
idtext=ID of the addon.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
urltextURL to the remote log management service.