https://github.com/zendesk/cloudwatch-logger
Connects standard input to Amazon CloudWatch Logs
https://github.com/zendesk/cloudwatch-logger
aws cloudwatch-logs logs
Last synced: 6 months ago
JSON representation
Connects standard input to Amazon CloudWatch Logs
- Host: GitHub
- URL: https://github.com/zendesk/cloudwatch-logger
- Owner: zendesk
- License: other
- Archived: true
- Created: 2017-02-09T17:39:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-09T19:30:29.000Z (over 8 years ago)
- Last Synced: 2025-03-13T08:04:14.838Z (7 months ago)
- Topics: aws, cloudwatch-logs, logs
- Language: Go
- Size: 2.93 KB
- Stars: 20
- Watchers: 16
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
cloudwatch-logger
=================
A simple tool to connect the standard input stream to Amazon CloudWatch.Usage
-----
```
cloudwatch-logger [-t] LOG-GROUP-NAME LOG-STREAM-NAME
```If the `-t` option is specified, the input will also be copied to standard
output.The log group and log stream will automatically be created if necessary.
**NOTE:** The named log stream must not exist prior to running this program.
Build instructions
------------------
```
$ make
```If you want to cross-compile, set the `GOOS` and `GOARCH` environment variables
first. See https://golang.org/doc/install/source for details on the possible
values.Author
------
Michael S. Fischer,Thanks
------
* [Eric Holmes](https://github.com/ejholmes) for his dead-simple [CloudWatch
Logs stream library](https://github.com/ejholmes/cloudwatch).