├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── handlers.go ├── main.go └── samples ├── firing.json ├── resolved.json └── screenshot.png /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/go.sum -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/handlers.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/main.go -------------------------------------------------------------------------------- /samples/firing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/samples/firing.json -------------------------------------------------------------------------------- /samples/resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/samples/resolved.json -------------------------------------------------------------------------------- /samples/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-karan/alertmatter/HEAD/samples/screenshot.png --------------------------------------------------------------------------------