Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1 KB

README.md

File metadata and controls

42 lines (29 loc) · 1 KB

Hello Plugin for Steampipe

Examples for creators of Steampipe plugins

Learn about Steampipe

Get started

Install go, then:

$ git clone https://github.com/judell/steampipe-plugin-hello

$ cp ./config/hello.spc ~/.steampipe/config

$ make

$ steampipe query

> select * from hello order by id
+----+----------+-------------------+
| id | greeting | json              |
+----+----------+-------------------+
| 1  | Hello    | {"hello":"world"} |
| 2  | Hello    | {"hello":"world"} |
| 3  | Hello    | {"hello":"world"} |
+----+----------+-------------------+