wallix / awless

A Mighty CLI for AWS
http://awless.io/
Apache License 2.0
4.98k stars 263 forks source link

Tail CloudFormation events #146

Closed taraspos closed 7 years ago

taraspos commented 7 years ago

This implements PR #143.

New command added: awless tail stack-events

By default shows last N (10 default) events.

Flag --follow allow following events with refresh interval N seconds (10 default). Local flag --watch-deployment allow following events of current in progress deployment and exits when deployment finishes., if no running deployment exits with an error.

simcap commented 7 years ago

Great, thanks! Looks good. We are testing it locally and I am just reviewing some minor details.

simcap commented 7 years ago

Our first tailer code was not ideal! So i did some minor corrections in our first tailer in master that you can mimic. See commit https://github.com/wallix/awless/commit/0b031680afa76005fe29bec591fe3197f7eef12b

(ex: notably not using the term refresh, which should be follow instead since this is the term transferred from the CLI flags)

fxaguessy commented 7 years ago

Also, could you please have a look at https://goo.gl/forms/1lQFPEIxdt37aDn43 (very short form), it's always interesting for us to know the real life usage of awless. Thanks

taraspos commented 7 years ago

@simcap done