Use SQL to query Linode APIs (new open source tool)
We released a Linode plugin for Steampipe today, allowing you to query domains, instances, events and more from Linode using SQL:
Docs - https://hub.steampipe.io/plugins/turbot/linode
Repo - https://github.com/turbot/steampipe-plugin-linode
For example, this query returns image counts by vendor:
select vendor, count(*)
from linode_image
group by vendor
order by count desc
Steampipe is often used to build security and cost queries / controls. We have 15 tables at launch, and would love any feedback / suggestions / contributions you'd like to make!