diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-20 22:17:42 +0100 |
---|---|---|
committer | Guix Patches Tester <> | 2020-04-20 22:20:06 +0100 |
commit | e4b2ac0fb4d1f96f220503eb5af55f03caf6eb86 (patch) | |
tree | ad83f2c6294f2377b0f67d43d9f7e2ce7130a2bb | |
parent | 31c23138824f5ccf677b97524acc39d02943be21 (diff) | |
download | patches-e4b2ac0fb4d1f96f220503eb5af55f03caf6eb86.tar patches-e4b2ac0fb4d1f96f220503eb5af55f03caf6eb86.tar.gz |
gnu: Add alertmanager.
* gnu/packages/monitoring.scm (alertmanager): New variable.
-rw-r--r-- | gnu/packages/monitoring.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 345c2c16c5..e0e345d259 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -471,6 +471,29 @@ written in Go with pluggable metric collectors.") (description "") (license ""))) +(define-public alertmanager + (package + (name "alertmanager") + (version "0.20.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/alertmanager.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bq6vbpy25k7apvs2ga3fbp1cbnv9j0y1g1khvz2qgz6a2zvhgg3")))) + (build-system go-build-system) + (arguments + '(#:unpack-path "github.com/prometheus/alertmanager" + #:import-path "github.com/prometheus/alertmanager/cmd/alertmanager" + #:install-source? #f)) + (home-page "https://prometheus.io/") + (synopsis "") + (description "") + (license ""))) + (define-public fswatch (package (name "fswatch") |