https://github.com/takapi327/cloudwatch-log-alert
CloudWatchのアラートを検知し、Slackに通知するためのLambda用アプリケーション
https://github.com/takapi327/cloudwatch-log-alert
Last synced: 12 months ago
JSON representation
CloudWatchのアラートを検知し、Slackに通知するためのLambda用アプリケーション
- Host: GitHub
- URL: https://github.com/takapi327/cloudwatch-log-alert
- Owner: takapi327
- Created: 2021-09-23T09:30:17.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2021-10-03T08:06:29.000Z (over 4 years ago)
- Last Synced: 2025-04-01T13:27:49.813Z (about 1 year ago)
- Language: TypeScript
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CloudWatch log alert
## 概要
CloudWatchのアラートを検知し、Slackに通知するためのLambda用アプリケーション
## セットアップ
### npm
```bash
$ npm init
$ npm install typescript
$ npm tsc --init
$ npm install --save-dev @types/node
```
### yarn
```bash
$ yarn init
$ yarn add typescript
$ yarn tsc --init
$ yarn add --dev @types/node
```
## クローン
```bash
$ git clone git@github.com:takapi327/cloudwatch-log-alert.git
$ yarn init or npm init
```