Skip to content

Commit

Permalink
release: preparing release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yorodm committed Jan 10, 2020
1 parent a6cafc9 commit 7f5afab
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "awstail"
version = "0.2.2"
version = "0.3.0"
authors = ["Yoandy Rodriguez <[email protected]>"]
edition = '2018'
[dependencies]
Expand Down
30 changes: 25 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,29 @@

[AWSTail](https://gitbuh.com/yorodm/awstail) is a tail like tool for [AWS Cloudwatch](https://aws.amazon.com/cloudwatch/).

## **WARNING**
This is a simple tool that allows you to monitor your [AWS Cloudwatch](https://aws.amazon.com/cloudwatch/) logs
in a way similar to `tail -f`.

This repository is a work in progress!!! I'm using this tool to get familiar
with the [Rust](https://rust-lang.org) language. If you really need a CLI interface
to Cloudwatch you should consider using [the official cli](https://aws.amazon.com/cli/)
or [awslogs](https://github.com/jorgebastida/awslogs)
To install just download the binaries from the release page or clone this repo and build it yourself.

```sh
awstail 0.3.0
Yoandy Rodriguez <[email protected]>
like tail -f for AWS Cloudwatch

USAGE:
awstail.exe [OPTIONS] <LOG_GROUP>

FLAGS:
-h, --help Prints help information
-V, --version Prints version information

OPTIONS:
-p <PROFILE> Profile if using other than 'default'
-r <REGION> AWS region (defaults to us-east-1)
-s <SINCE> Take logs since given time (defaults to 5 minutes)
-w <WATCH> Keep watching for new logs every n seconds (defaults to 10)

ARGS:
<LOG_GROUP> Log group name
```
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn main() {
ctrlc::set_handler(move || std::process::exit(0))
.expect("Could not set Ctrl+C handler...bailing out");
let matches = App::new("awstail")
.version("0.2.2")
.version("0.3.0")
.author("Yoandy Rodriguez <[email protected]>")
.about("like tail -f for AWS Cloudwatch")
.arg(
Expand Down

0 comments on commit 7f5afab

Please sign in to comment.