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-2.0"
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" "build" "-p" name "-j" jobs]
21 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
22]
23dev-repo: "git+https://github.com/mirage/prometheus.git"
24description: """
25To run services reliably, it is useful if they can report various metrics
26(for example, heap size, queue lengths, number of warnings logged, etc).
27
28A monitoring service can be configured to collect this data regularly.
29The data can be graphed to help understand the performance of the service over time,
30or to help debug problems quickly.
31It can also be used to send alerts if a service is down or behaving poorly.
32"""
33x-commit-hash: "4a85699fa5e37975484fc99bdf3ff944a315a1ed"
34url {
35 src:
36 "https://github.com/mirage/prometheus/releases/download/v1.1/prometheus-v1.1.tbz"
37 checksum: [
38 "sha256=fbcf8bb28c02bfe4f61d2494bc2b70fdedd62f2b41fd1343e6f73d583bf599e4"
39 "sha512=9cf49689f6d33138cf41eca585e0d15bd17f670a3334b8235a52cc6c210fdc763fb967b19a91a110759a206aa9223cca1c7064e0eb2e2e6d3d13957ec7a38201"
40 ]
41}