Table: hcloud_action
Query actions from your Hetzner Cloud account.
Examples
List create_server actions
select *from hcloud_actionwhere command = 'create_server'
Get a specific action
select *from hcloud_actionwhere id = 271232672
Actions in error
select *from hcloud_actionwhere status = 'error'
All actions related to a given server
select a.*from hcloud_action as a, jsonb_array_elements(a.resources) as rwhere r ->> 'Type' = 'server' and (r -> 'ID') :: int = 14462596
.inspect hcloud_action
Actions performed in the Hetzner Cloud account.
Name | Type | Description |
---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. |
command | text | Command executed in the Action. |
error | jsonb | Error message for the Action if error occurred, otherwise null. |
finished | timestamp with time zone | Point in time when the Action was finished. Only set if the Action is finished otherwise null. |
id | bigint | ID of the Action. |
progress | bigint | Progress of Action in percent. |
resources | jsonb | Resources the Action relates to. |
started | timestamp with time zone | Point in time when the Action was started. |
status | text | Status of the Action: success, running, error. |