this repo has no description
1opam-version: "2.0" 2maintainer: "datakit@docker.com" 3authors: ["Thomas Leonard"] 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 "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "false" 12 "-n" "prometheus" 13] 14 15depends: [ 16 "ocaml" {>= "4.01.0"} 17 "ocamlfind" {build} 18 "astring" 19 "asetmap" 20 "fmt" 21 "lwt" {>= "2.5.0"} 22 "alcotest" {with-test} 23] 24synopsis: "Client library for Prometheus monitoring" 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 34This repository contains code to report metrics to a Prometheus monitoring server.""" 35url { 36 src: 37 "https://github.com/mirage/prometheus/releases/download/v0.1/prometheus-0.1.tbz" 38 checksum: [ 39 "sha256=0b2c80bb27323dd4eb1f13fab0f0f8d08d144f185692fd0929891f5b119602ff" 40 "md5=b0f3f5e3ef839d3b7ef672e5dd060d77" 41 ] 42}