this repo has no description
1opam-version: "2.0"
2maintainer: "datakit@docker.com"
3authors: ["Thomas Leonard" "David Scott"]
4license: "Apache-1.0+"
5homepage: "https://github.com/mirage/prometheus"
6bug-reports: "https://github.com/mirage/prometheus/issues"
7dev-repo: "git+https://github.com/mirage/prometheus.git"
8doc: "https://mirage.github.io/prometheus/"
9
10build: [
11 [ "jbuilder" "build" "--only-packages=prometheus"
12 "--no-config" {jbuilder:version >= "1.0+beta18"}
13 ]
14]
15
16depends: [
17 "ocaml" {>= "4.01.0"}
18 "ocamlfind" {build}
19 "jbuilder"
20 "astring"
21 "asetmap"
22 "fmt"
23 "re"
24 "lwt" {>= "2.5.0"}
25 "alcotest" {with-test}
26]
27synopsis: "Client library for Prometheus monitoring"
28description: """
29To run services reliably, it is useful if they can report various metrics
30(for example, heap size, queue lengths, number of warnings logged, etc).
31
32A monitoring service can be configured to collect this data regularly.
33The data can be graphed to help understand the performance of the service over time,
34or to help debug problems quickly.
35It can also be used to send alerts if a service is down or behaving poorly.
36
37This repository contains code to report metrics to a Prometheus monitoring server."""
38url {
39 src: "https://github.com/mirage/prometheus/archive/v0.2.tar.gz"
40 checksum: [
41 "sha256=8bae36a71bca170eda8bee3ba0bc08469c1e69b011be208cae31d52201661917"
42 "md5=efc5386127cc451910e0372adef8799e"
43 ]
44}