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