Skip to content

Commit 4cb9759

Browse files
author
Felix Breidenstein
committed
Fix README and add goreleaser config
1 parent 78d1c32 commit 4cb9759

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
alertmanager-fe2-bridge
22
config.yaml
3+
dist/

.goreleaser.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
before:
2+
hooks:
3+
- go mod download
4+
5+
builds:
6+
- env:
7+
- CGO_ENABLED=0
8+
goos:
9+
- linux
10+
- windows
11+
- darwin
12+
goarch:
13+
- amd64
14+
15+
archives:
16+
- replacements:
17+
darwin: Darwin
18+
linux: Linux
19+
windows: Windows
20+
amd64: x86_64
21+
22+
checksum:
23+
name_template: 'checksums.txt'
24+
25+
changelog:
26+
sort: asc

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# alertmanager-fe2-bridge
22

3-
A little gateway which receives alerts from the Prometheus Alertmanager via the (webhook
4-
receiver)[https://prometheus.io/docs/alerting/latest/configuration/#webhook_config] and sends them to the HTTP
5-
interface of your (Alamos FE2)[https://www.alamos-gmbh.com/service/fe2/] installation.
3+
A little gateway which receives alerts from the Prometheus Alertmanager via
4+
the [webhook
5+
receiver](https://prometheus.io/docs/alerting/latest/configuration/#webhook_config)
6+
and sends them to the HTTP interface of your [Alamos
7+
FE2](https://www.alamos-gmbh.com/service/fe2/) installation.
68

79
## Installation
10+
Install manually from source:
11+
```
12+
go get github.com/codemonauts/alertmanager-fe2-bridge
13+
```
14+
or get the latest compiled binary from the
15+
[Releases](https://github.com/codemonauts/alertmanager-fe2-bridge/releases) page on GitHub.
816

917
## Alertmanager configuration
1018
```

0 commit comments

Comments
 (0)