"lazy-awslogs" is a tool for Amazon CloudWatch Logs.
This command can query groups and streams, and filter events. In addition, remember frequently used settings and help to reduce your type amount.
Inspired by jorgebastida/awslogs: AWS CloudWatch logs for Humans™.
- Show logs, groups, streams.
- Shell completion.
- Configuration.
- Human-friendly time filtering.
$ go get github.com/cm-igarashi-ryosuke/lazy-awslogs
Shell completion supports your type for subcommands, options, and option's value(e.g. --group
, --stream
)
For Mac:
$ cp shell-completion/lazy-awslogs.sh /usr/local/etc/bash_completion.d/lazy-awslogs
$ chmod +x /usr/local/etc/bash_completion.d/lazy-awslogs
$ source /usr/local/etc/bash_completion.d/lazy-awslogs
Add following code in your config.fish
$ cd $project
$ source shell-completion/lazy-awslogs.fish
- Use
--aws-access-key-id
and--aws-secret-access-key
options. - Use
--profile
option. - Recommending, use
config
command. For details, write below.
config
command records your settings and define a default setting(Like a rbenv). Then, it be able to omit some options.
$ lazy-awslogs config add \
--config-name staging \
--config-profile staging-profile \
--config-region us-east-1
$ lazy-awslogs config add \
--config-name production \
--config-profile production-profile \
--config-region us-east-1
$ lazy-awslogs config list
* staging
production
$ lazy-awslogs config show
====== [Current Environment] ======
EnvironmentName: staging
Profile: staging-profile
Region: us-east-1
$ lazy-awslogs config use production
$ lazy-awslogs config list
staging
* production
$ lazy-awslogs config show
====== [Current Environment] ======
EnvironmentName: production
Profile: production-profile
Region: us-east-1
Note that config
command make a configuration file at ~/.lazy-awslogs.yaml
by default.
reload
command cache all groups and streams. Then, it be able to use Shell completion
for --group
and --stream
options.
Note that depending on the amount, it may take some time.
$ lazy-awslogs reload
For details of each command, please refer to the --help
.
Usage:
lazy-awslogs [command]
Available Commands:
config Manage config file
get Lists log events from the specified log stream.
groups List groups
help Help about any command
reload Get groups and streams and update config file
streams List streams
version Display version
Flags:
--aws-access-key-id string AWS access key
--aws-secret-access-key string AWS secret key
--config string Config file (default is $HOME/.lazy-awslogs.yaml)
-h, --help help for lazy-awslogs
-p, --profile string AWS credentials profile
-r, --region string AWS region
-v, --verbose Enable verbose messages
- Test!
- Inplement interactive initialize command for config.
- Implement more option for get command.
- More support credential type.
- And more.