steampipe plugin install heroku

Table: heroku_dyno - Query Heroku Dynos using SQL

A Heroku Dyno is a lightweight, isolated container that runs the command specified in the Procfile of your app. Each dyno belongs to a specific application and is scoped to the environment of that application. Dynos can be used to run virtually any language or service and can be scaled individually based on the needs of the application.

Table Usage Guide

The heroku_dyno table provides insights into the dynos running within a Heroku application. As a developer or DevOps engineer, you can use this table to explore dyno-specific details, such as current status, type, and configuration. This information can be critical for troubleshooting application issues, optimizing resource usage, and understanding the overall health and performance of your Heroku applications.

Important Notes

  • List queries require an app_name.
  • Get queries require an app_name and a dyno id.
  • Pagination is not currently supported for this resource type in the SDK.

Examples

List all dynos

Explore which dynos are currently in use within a specific Heroku application. This is useful for monitoring your app's resource usage and performance.

select
id,
name,
type,
size,
state
from
heroku_dyno
where
app_name = 'steampipe';
select
id,
name,
type,
size,
state
from
heroku_dyno
where
app_name = 'steampipe';

List all crashed dynos

Uncover the details of application failures by identifying instances where an application's dynamic components, or 'dynos', have crashed. This can assist in troubleshooting and improving the stability of the application.

select
id,
name,
type,
size,
state
from
heroku_dyno
where
app_name = 'steampipe'
and state = 'crashed';
select
id,
name,
type,
size,
state
from
heroku_dyno
where
app_name = 'steampipe'
and state = 'crashed';

List all hobby size dynos

Explore which dynos within a specific Heroku application are designated as 'Hobby' size. This can help you understand the resource allocation and usage within your application.

select
id,
name,
type,
size,
state
from
heroku_dyno
where
app_name = 'steampipe'
and size = 'Hobby';
select
id,
name,
type,
size,
state
from
heroku_dyno
where
app_name = 'steampipe'
and size = 'Hobby';

Schema for heroku_dyno

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
appjsonbApp formation belongs to.
app_nametext=App name formation belongs to.
attach_urltextA URL to stream output from for attached processes or null for.
commandtextCommand used to start this process.
created_attimestamp with time zoneWhen dyno was created.
idtext=Unique identifier of this dyno.
nametextThe name of this process on this dyno.
releasejsonbApp release of the dyno.
sizetextDyno size (default: standard-1X).
statetextCurrent status of process (either: crashed, down, idle, starting, or up)
typetextType of process.
updated_attimestamp with time zoneWhen process last changed state.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- heroku

You can pass the configuration to the command with the --config argument:

steampipe_export_heroku --config '<your_config>' heroku_dyno