# v0.15.0: Improved usability, telemetry, 9 new plugins

> Discover the great new features in Steampipe's open source v0.15.0 release!

By Steampipe Team
Published: 2022-06-23


<div className="row mb-5 mt-1">
  <div className="col col-12 col-lg-6">
    <h2>What is Steampipe?</h2>
    &rarr; Query <strong>cloud APIs</strong>.
    <br/>
    &rarr; Visualize queries on <strong>dashboards</strong>.
    <br/>
    &rarr; Run <strong>compliance controls and benchmarks</strong>.
    <br/>
    &rarr; Blazing fast <strong>multi-threaded Golang CLI</strong>.
    <br/> 
    &rarr; Connect anything to the <strong>embedded PostgreSQL</strong>.
  </div>
  <div className="col col-12 col-lg-1"></div>
  <div className="col col-12 col-lg-5 mt-5">
    <Terminal title="steampipe cli">
      <TerminalCommand enableCopyToClipboard={false}>
        {`
select
  region,
  instance_state as state,
  instance_type as type
from
  aws_ec2_instance;
        `}
      </TerminalCommand>
      <TerminalResult>
        {`+-----------+---------+-----------+
| region    | state   | type      |
+-----------+---------+-----------+
| eu-west-1 | running | t3.medium |
| eu-west-2 | running | m5a.large |
| us-east-1 | running | t3.large  |
+-----------+---------+-----------+
        `}
      </TerminalResult>
    </Terminal>
  </div>
</div>

## tl;dr

** &rarr; ** **[Improved usability](#improved-usability)**.<br />
** &rarr; ** **[Telemetry](#telemetry)**.<br />
** &rarr; ** **[New/updated plugins](#plugins)**. <br /> 
** &rarr; ** **[New/updated mods](#mods)**. <br /> 
** &rarr; ** Even more goodies in the [full release notes](https://github.com/turbot/steampipe/blob/main/CHANGELOG.md#v0150-2022-06-23).
## Improved usability

The v0.15 release bundles a set of improvements requested by users.

### Dashboard progress bar

In v0.14 we introduced [benchmark dashboards](https://steampipe.io/blog/release-0-14-0#benchmark-dashboards), a new way to run benchmarks and controls. You could see the progress of individual controls but there wasn't an all-up progress bar for the dashboard. Now there is.

<video controls loop style={{"borderWidth":"thin", "borderStyle":"solid", "width":"100%", "marginBottom":"1em",  "borderColor":"lightgray"}}>
  <source src="/images/blog/2022-06-release-0-15-0/dashboard-progress.mp4" />
</video>

And it works for all dashboards, not just benchmark dashboards. 

### Show password only on request

When you start Steampipe as a service it prints the details that Postgres clients need to connect to the service. Until now that included the database password. GitHub user [kaiba42](https://github.com/kaiba42) kicked off a [fruitful discussion](https://github.com/turbot/steampipe/issues/2033) and contributed the consensus solution: hide the password by default, reveal it when requested with `--show-password`.

![](/images/blog/2022-06-release-0-15-0/show-password.png)

### Enhanced .timing info

One of the Steampipe CLI's meta-commands, `.timing`, reports the execution time for a query. Users have wanted to know more about what Steampipe is doing when it runs a query. So now `.timing` also reports the number of rows fetched, how many were cached, and how many [hydrate](https://steampipe.io/docs/develop/writing-plugins#hydrate-functions) calls happened.

<video controls loop style={{"borderWidth":"thin", "borderStyle":"solid", "width":"100%", "marginBottom":"1em",  "borderColor":"lightgray"}}>
  <source src="/images/blog/2022-06-release-0-15-0/enhanced-timing.mp4" />
</video>

## Telemetry

Developers who run Steampipe often use the [STEAMPIPE_LOG_LEVEL](https://steampipe.io/docs/reference/env-vars/steampipe_log#steampipe_log_level) environment variable to increase the amount of information that flows to the logs. This release adds support for [OpenTelemetry](https://opentelemetry.io/). You can now use an analogous environment variable, [STEAMPIPE_OTEL_LEVEL](https://steampipe.io/docs/reference/env-vars/steampipe_otel_level), in conjunction with `OTEL_EXPORTER_OTLP_ENDPOINT` which points to an [OpenTelemetry Collector](https://github.com/open-telemetry/opentelemetry-collector). The collector receives telemetry data from Steampipe and provides it to a visualizer such as [Jaeger](https://www.jaegertracing.io/).

In this example, Jaeger visualizes traces for the query `select * from aws_s3_bucket`.

![](/images/blog/2022-06-release-0-15-0/jaeger.png)


## Plugins

Since our [last release](https://steampipe.io/blog/release-0-14-0), we've added 9 new plugins.

- [Baleen](https://hub.steampipe.io/plugins/francois2metz/baleen) - query rules, namespaces, etc
- [Buildkite](https://hub.steampipe.io/plugins/turbot/buildkite) - query agent, build, org, team, etc
- [Duo Security](https://hub.steampipe.io/plugins/turbot/duo) - query account, auth_log_record, group, user, etc
- [Gandi](https://hub.steampipe.io/plugins/francois2metz/gandi) - query certificate, domain, mailbox, etc
- [HIBP](https://hub.steampipe.io/plugins/turbot/hibp) - query breach, breached_account, password, paste
- [MongoDB Atlas](https://hub.steampipe.io/plugins/turbot/mongodbatlas) - query cluster, container, database_user, team, etc
- [OVH](https://hub.steampipe.io/plugins/francois2metz/ovh) - query database, instance, storage, volume, etc
- [PAN-OS](https://hub.steampipe.io/plugins/turbot/panos) - query address_object, administrative_tag, nat_rule, security_rule
- [Reddit](https://hub.steampipe.io/plugins/turbot/reddit) - query reddit_my_post, subreddit_post_search, subreddit_search, etc

Note that three of these -- Baleen, Gandi, and OVH -- were contributed by [François de Metz](https://github.com/francois2metz) who is also the author of the [Airtable](https://hub.steampipe.io/plugins/francois2metz/airtable) and [Scalingo](https://hub.steampipe.io/plugins/francois2metz/scalingo) plugins. 

Other community members contributed these fixes and enhancements.

- [harlequin](https://github.com/harlequin) fixed a bug in the LDAP plugin
- [Jelmer Borst](https://github.com/japborst) added three new tables to the GitHub plugin
- [Mark Heiges](https://github.com/mheiges) implemented experimental support for GitHub Enterprise
- [srgg](https://github.com/srgg) added the `endpoint_url` config arg for the AWS plugin
- [Miles Smith](https://gitlab.com/wedtm/) created the initial implementation of the HIBP plugin

Thank you!
 ## Mods

2 new Insights mods were released this cycle.

-	[IBM Cloud Insights](https://hub.steampipe.io/mods/turbot/ibm_insights)
- [Kubernetes Insights](https://hub.steampipe.io/mods/turbot/kubernetes_insights)


The most notable update was to [AWS Compliance](https://hub.steampipe.io/mods/turbot/aws_compliance).  Its new NIST 800-53 Revision 5 benchmark comprises 122 controls that cover access control, auditing, configuration management, and more.

## Let’s get building!

Steampipe delivers tools to build, execute, and visualize and share cloud configuration, compliance, and security frameworks using HCL + SQL and a little elbow grease. To support those tools, it maps a growing suite of APIs to tables that you can query, and join across, in Postgres. 

Do you want to help us expand the open source documentation and control coverage for CIS, PCI, HIPAA, and NIST? Add tables to existing plugins? Create plugins to bring new APIs into the mix? Create dashboards to visualize those APIs? The best way to get started is to [join our Slack workspace](https://steampipe.io/community/join) and raise your hand. We would love to talk to you!

For even more good stuff in v0.15.0, check out the [full release notes on GitHub](https://github.com/turbot/steampipe/blob/main/CHANGELOG.md#v0150-2022-06-23).

