mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-prometheus-client.
* gnu/packages/monitoring.scm (python-prometheus-client, python2-prometheus-client): New variables.
This commit is contained in:
parent
533808383f
commit
fb6f35ba1d
1 changed files with 31 additions and 0 deletions
|
@ -28,6 +28,7 @@ (define-module (gnu packages monitoring)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages admin)
|
#:use-module (gnu packages admin)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages django)
|
#:use-module (gnu packages django)
|
||||||
#:use-module (gnu packages gd)
|
#:use-module (gnu packages gd)
|
||||||
|
@ -262,3 +263,33 @@ (define-public python2-graphite-web
|
||||||
two things: store numeric time-series data, and render graphs of this data on
|
two things: store numeric time-series data, and render graphs of this data on
|
||||||
demand.")
|
demand.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-prometheus-client
|
||||||
|
(package
|
||||||
|
(name "python-prometheus-client")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "prometheus_client" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"164qzzg8q8awqk0angcm87p2sjiibaj1wgjz0xk6j0klvqi5q2mz"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(;; No included tests.
|
||||||
|
#:tests? #f))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/prometheus/client_python")
|
||||||
|
(synopsis "Python client for the Prometheus monitoring system")
|
||||||
|
(description
|
||||||
|
"The @code{prometheus_client} package supports exposing metrics from
|
||||||
|
software written in Python, so that they can be scraped by a Prometheus
|
||||||
|
service.
|
||||||
|
|
||||||
|
Metrics can be exposed through a standalone web server, or through Twisted,
|
||||||
|
WSGI and the node exporter textfile collector.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python2-prometheus-client
|
||||||
|
(package-with-python2 python-prometheus-client))
|
||||||
|
|
Loading…
Reference in a new issue