edge

Powerpipe is now the recommended way to run dashboards and benchmarks! Mods still work as normal in Steampipe for now, but they are deprecated and will be removed in a future release:

The edge block represents a connection between 2 nodes (vertices) in a graph, hierarchy or flow.

Anonymous edge blocks can be declared inside a graph, hierarchy or flow. They may also may be declared as named resources at the top level of a mod and referenced via base from other edges in a graph, hierarchy or flow.

Example Usage

edge "plugin_to_version" {
title = "version"
sql = <<-EOQ
select
name as from_id,
digest as to_id
from
steampipe_registry_plugin_version
where
name = $1
EOQ
param "plugin_name" {}
}

Argument Reference

ArgumentTypeOptional?Description
argsMapOptionalA map of arguments to pass to the query.
baseflow ReferenceOptionalA reference to a named edge resource that this edge should source its definition from.
categoryBlockOptionalcategory blocks that specify display options for edges with that category.
paramBlockOptionalparam blocks that defines the parameters that can be passed in to the sql. param blocks may only be specified when the edge is defined as a top-level (mod level), named resource.
queryQuery ReferenceOptionalA reference to a query resource that defines the query to run. You must either specify the query argument or the sql argument, but not both.
sqlStringOptionalA SQL string to provide data for the edge. You must either specify the query argument or the sql argument, but not both.
titleStringOptionalA plain text title to display for this edge.

Data Format

Data must be provided in a format where each row represents an edge. Significant columns are:

NameDescription
titleAn optional title to display for the edge.
categoryAn optional display category. This must be the name of a category declared in the parent graph, flow, or hierarchy.
from_idThe id of the source node of an edge. from_id is required for edges
propertiesA jsonb key/value map of properties to display for the node/edge when the user hovers over it. The properties column is optional for nodes and edges.
to_idThe id of the destination node of an edge. to_id is required for edges

The category and title may be specified either in the SQL results or in HCL. If both are specified, the value in the SQL result set has precedence.

More Examples

An inline edge in a graph

dashboard "edge_ex_1" {
graph {
edge {
title = "version"
sql = <<-EOQ
select
name as from_id,
digest as to_id
from
steampipe_registry_plugin_version
where
name = 'turbot/ldap'
EOQ
}
}
}

Reusable edge with base

dashboard "edge_ex_2" {
graph {
edge {
base = edge.plugin_to_version
}
}
}
edge "plugin_to_version" {
title = "version"
sql = <<-EOQ
select
name as from_id,
digest as to_id
from
steampipe_registry_plugin_version
EOQ
}

Reusable edge with base passing args

dashboard "edge_ex_2" {
graph {
edge {
base = edge.plugin_to_version
args = {
plugin_name = self.input.plugin_name.value
}
}
}
}
edge "plugin_to_version" {
title = "version"
sql = <<-EOQ
select
name as from_id,
digest as to_id
from
steampipe_registry_plugin_version
where
name = $1
EOQ
param "plugin_name" {}
}