File tree Expand file tree Collapse file tree 7 files changed +344
-0
lines changed
opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.13
opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.13
opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.13
opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.13
opentelemetry-logs/opentelemetry-logs.0.13
opentelemetry-lwt/opentelemetry-lwt.0.13
opentelemetry/opentelemetry.0.13 Expand file tree Collapse file tree 7 files changed +344
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Collector client for opentelemetry, using cohttp + eio"
3+ maintainer: [
4+ "Simon Cruanes <simon.cruanes.2007@m4x.org>"
5+ "Matt Bray <mattjbray@gmail.com>"
6+ "ELLIOTTCABLE <opam@ell.io>"
7+ ]
8+ authors: ["the Imandra team" "ocaml-tracing contributors"]
9+ license: "MIT"
10+ homepage: "https://github.com/ocaml-tracing/ocaml-opentelemetry"
11+ bug-reports: "https://github.com/ocaml-tracing/ocaml-opentelemetry/issues"
12+ depends: [
13+ "dune" {>= "2.9"}
14+ "ocaml" {>= "5.00"}
15+ "mtime" {>= "1.4"}
16+ "ca-certs"
17+ "mirage-crypto-rng-eio"
18+ "opentelemetry" {= version}
19+ "odoc" {with-doc}
20+ "cohttp-eio" {>= "6.1.0"}
21+ "eio_main" {with-test}
22+ "tls-eio"
23+ "alcotest" {with-test}
24+ "containers" {with-test}
25+ ]
26+ build: [
27+ ["dune" "subst"] {dev}
28+ [
29+ "dune"
30+ "build"
31+ "-p"
32+ name
33+ "-j"
34+ jobs
35+ "--promote-install-files=false"
36+ "@install"
37+ "@runtest" {with-test}
38+ "@doc" {with-doc}
39+ ]
40+ ["dune" "install" "-p" name "--create-install-files" name]
41+ ]
42+ dev-repo: "git+https://github.com/ocaml-tracing/ocaml-opentelemetry.git"
43+ url {
44+ src:
45+ "https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz"
46+ checksum: [
47+ "sha256=95bed48a48d324a02ffa27717531d9a68ca3d0166705fbafe076fa58f922d5d2"
48+ "sha512=feb3af4150551885d186d97bd63ef8d3d33214efa54671e39a34fd07a89e3c83663c58c0e63b45a6a1ab44dd761a9a65d40f90ddc207de60294b3f8ce1cdd8c8"
49+ ]
50+ }
51+ x-commit-hash: "079c499539aefc6cba07351b2cb09c5965a8618d"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Collector client for opentelemetry, using cohttp + lwt"
3+ maintainer: [
4+ "Simon Cruanes <simon.cruanes.2007@m4x.org>"
5+ "Matt Bray <mattjbray@gmail.com>"
6+ "ELLIOTTCABLE <opam@ell.io>"
7+ ]
8+ authors: ["the Imandra team" "ocaml-tracing contributors"]
9+ license: "MIT"
10+ homepage: "https://github.com/ocaml-tracing/ocaml-opentelemetry"
11+ bug-reports: "https://github.com/ocaml-tracing/ocaml-opentelemetry/issues"
12+ depends: [
13+ "dune" {>= "2.9"}
14+ "ocaml" {>= "4.08"}
15+ "mtime" {>= "1.4"}
16+ "opentelemetry" {= version}
17+ "odoc" {with-doc}
18+ "lwt" {>= "5.3"}
19+ "lwt_ppx" {>= "2.0"}
20+ "cohttp-lwt" {>= "6.0"}
21+ "cohttp-lwt-unix"
22+ "alcotest" {with-test}
23+ "containers" {with-test}
24+ ]
25+ build: [
26+ ["dune" "subst"] {dev}
27+ [
28+ "dune"
29+ "build"
30+ "-p"
31+ name
32+ "-j"
33+ jobs
34+ "--promote-install-files=false"
35+ "@install"
36+ "@runtest" {with-test}
37+ "@doc" {with-doc}
38+ ]
39+ ["dune" "install" "-p" name "--create-install-files" name]
40+ ]
41+ dev-repo: "git+https://github.com/ocaml-tracing/ocaml-opentelemetry.git"
42+ url {
43+ src:
44+ "https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz"
45+ checksum: [
46+ "sha256=95bed48a48d324a02ffa27717531d9a68ca3d0166705fbafe076fa58f922d5d2"
47+ "sha512=feb3af4150551885d186d97bd63ef8d3d33214efa54671e39a34fd07a89e3c83663c58c0e63b45a6a1ab44dd761a9a65d40f90ddc207de60294b3f8ce1cdd8c8"
48+ ]
49+ }
50+ x-commit-hash: "079c499539aefc6cba07351b2cb09c5965a8618d"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Collector client for opentelemetry, using http + ezcurl"
3+ maintainer: [
4+ "Simon Cruanes <simon.cruanes.2007@m4x.org>"
5+ "Matt Bray <mattjbray@gmail.com>"
6+ "ELLIOTTCABLE <opam@ell.io>"
7+ ]
8+ authors: ["the Imandra team" "ocaml-tracing contributors"]
9+ license: "MIT"
10+ homepage: "https://github.com/ocaml-tracing/ocaml-opentelemetry"
11+ bug-reports: "https://github.com/ocaml-tracing/ocaml-opentelemetry/issues"
12+ depends: [
13+ "dune" {>= "2.9"}
14+ "ocaml" {>= "4.08"}
15+ "mtime" {>= "1.4"}
16+ "opentelemetry" {= version}
17+ "odoc" {with-doc}
18+ "ezcurl" {>= "0.3" & < "0.4"}
19+ "ocurl"
20+ "alcotest" {with-test}
21+ ]
22+ build: [
23+ ["dune" "subst"] {dev}
24+ [
25+ "dune"
26+ "build"
27+ "-p"
28+ name
29+ "-j"
30+ jobs
31+ "--promote-install-files=false"
32+ "@install"
33+ "@runtest" {with-test}
34+ "@doc" {with-doc}
35+ ]
36+ ["dune" "install" "-p" name "--create-install-files" name]
37+ ]
38+ dev-repo: "git+https://github.com/ocaml-tracing/ocaml-opentelemetry.git"
39+ url {
40+ src:
41+ "https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz"
42+ checksum: [
43+ "sha256=95bed48a48d324a02ffa27717531d9a68ca3d0166705fbafe076fa58f922d5d2"
44+ "sha512=feb3af4150551885d186d97bd63ef8d3d33214efa54671e39a34fd07a89e3c83663c58c0e63b45a6a1ab44dd761a9a65d40f90ddc207de60294b3f8ce1cdd8c8"
45+ ]
46+ }
47+ x-commit-hash: "079c499539aefc6cba07351b2cb09c5965a8618d"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
3+ maintainer: [
4+ "Simon Cruanes <simon.cruanes.2007@m4x.org>"
5+ "Matt Bray <mattjbray@gmail.com>"
6+ "ELLIOTTCABLE <opam@ell.io>"
7+ ]
8+ authors: ["the Imandra team" "ocaml-tracing contributors"]
9+ license: "MIT"
10+ homepage: "https://github.com/ocaml-tracing/ocaml-opentelemetry"
11+ bug-reports: "https://github.com/ocaml-tracing/ocaml-opentelemetry/issues"
12+ depends: [
13+ "dune" {>= "2.9"}
14+ "ocaml" {>= "4.08"}
15+ "opentelemetry" {= version}
16+ "opentelemetry-lwt" {= version}
17+ "odoc" {with-doc}
18+ "lwt" {>= "5.3"}
19+ "cohttp-lwt" {>= "6.0.0"}
20+ "alcotest" {with-test}
21+ ]
22+ build: [
23+ ["dune" "subst"] {dev}
24+ [
25+ "dune"
26+ "build"
27+ "-p"
28+ name
29+ "-j"
30+ jobs
31+ "--promote-install-files=false"
32+ "@install"
33+ "@runtest" {with-test}
34+ "@doc" {with-doc}
35+ ]
36+ ["dune" "install" "-p" name "--create-install-files" name]
37+ ]
38+ dev-repo: "git+https://github.com/ocaml-tracing/ocaml-opentelemetry.git"
39+ url {
40+ src:
41+ "https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz"
42+ checksum: [
43+ "sha256=95bed48a48d324a02ffa27717531d9a68ca3d0166705fbafe076fa58f922d5d2"
44+ "sha512=feb3af4150551885d186d97bd63ef8d3d33214efa54671e39a34fd07a89e3c83663c58c0e63b45a6a1ab44dd761a9a65d40f90ddc207de60294b3f8ce1cdd8c8"
45+ ]
46+ }
47+ x-commit-hash: "079c499539aefc6cba07351b2cb09c5965a8618d"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
3+ maintainer: [
4+ "Simon Cruanes <simon.cruanes.2007@m4x.org>"
5+ "Matt Bray <mattjbray@gmail.com>"
6+ "ELLIOTTCABLE <opam@ell.io>"
7+ ]
8+ authors: ["the Imandra team" "ocaml-tracing contributors"]
9+ license: "MIT"
10+ homepage: "https://github.com/ocaml-tracing/ocaml-opentelemetry"
11+ bug-reports: "https://github.com/ocaml-tracing/ocaml-opentelemetry/issues"
12+ depends: [
13+ "dune" {>= "2.9"}
14+ "ocaml" {>= "4.08"}
15+ "opentelemetry" {= version}
16+ "odoc" {with-doc}
17+ "logs" {>= "0.7.0"}
18+ "alcotest" {with-test}
19+ ]
20+ build: [
21+ ["dune" "subst"] {dev}
22+ [
23+ "dune"
24+ "build"
25+ "-p"
26+ name
27+ "-j"
28+ jobs
29+ "--promote-install-files=false"
30+ "@install"
31+ "@runtest" {with-test}
32+ "@doc" {with-doc}
33+ ]
34+ ["dune" "install" "-p" name "--create-install-files" name]
35+ ]
36+ dev-repo: "git+https://github.com/ocaml-tracing/ocaml-opentelemetry.git"
37+ url {
38+ src:
39+ "https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz"
40+ checksum: [
41+ "sha256=95bed48a48d324a02ffa27717531d9a68ca3d0166705fbafe076fa58f922d5d2"
42+ "sha512=feb3af4150551885d186d97bd63ef8d3d33214efa54671e39a34fd07a89e3c83663c58c0e63b45a6a1ab44dd761a9a65d40f90ddc207de60294b3f8ce1cdd8c8"
43+ ]
44+ }
45+ x-commit-hash: "079c499539aefc6cba07351b2cb09c5965a8618d"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io"
3+ maintainer: [
4+ "Simon Cruanes <simon.cruanes.2007@m4x.org>"
5+ "Matt Bray <mattjbray@gmail.com>"
6+ "ELLIOTTCABLE <opam@ell.io>"
7+ ]
8+ authors: ["the Imandra team" "ocaml-tracing contributors"]
9+ license: "MIT"
10+ tags: ["instrumentation" "tracing" "opentelemetry" "datadog" "lwt"]
11+ homepage: "https://github.com/ocaml-tracing/ocaml-opentelemetry"
12+ bug-reports: "https://github.com/ocaml-tracing/ocaml-opentelemetry/issues"
13+ depends: [
14+ "dune" {>= "2.9"}
15+ "ocaml" {>= "4.08"}
16+ "opentelemetry" {= version}
17+ "cohttp-lwt-unix" {with-test}
18+ "odoc" {with-doc}
19+ "lwt" {>= "5.3"}
20+ "lwt_ppx" {>= "2.0"}
21+ "alcotest" {with-test}
22+ ]
23+ build: [
24+ ["dune" "subst"] {dev}
25+ [
26+ "dune"
27+ "build"
28+ "-p"
29+ name
30+ "-j"
31+ jobs
32+ "--promote-install-files=false"
33+ "@install"
34+ "@runtest" {with-test}
35+ "@doc" {with-doc}
36+ ]
37+ ["dune" "install" "-p" name "--create-install-files" name]
38+ ]
39+ dev-repo: "git+https://github.com/ocaml-tracing/ocaml-opentelemetry.git"
40+ url {
41+ src:
42+ "https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz"
43+ checksum: [
44+ "sha256=95bed48a48d324a02ffa27717531d9a68ca3d0166705fbafe076fa58f922d5d2"
45+ "sha512=feb3af4150551885d186d97bd63ef8d3d33214efa54671e39a34fd07a89e3c83663c58c0e63b45a6a1ab44dd761a9a65d40f90ddc207de60294b3f8ce1cdd8c8"
46+ ]
47+ }
48+ x-commit-hash: "079c499539aefc6cba07351b2cb09c5965a8618d"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Instrumentation for https://opentelemetry.io"
3+ maintainer: [
4+ "Simon Cruanes <simon.cruanes.2007@m4x.org>"
5+ "Matt Bray <mattjbray@gmail.com>"
6+ "ELLIOTTCABLE <opam@ell.io>"
7+ ]
8+ authors: ["the Imandra team" "ocaml-tracing contributors"]
9+ license: "MIT"
10+ tags: ["instrumentation" "tracing" "opentelemetry" "datadog" "jaeger"]
11+ homepage: "https://github.com/ocaml-tracing/ocaml-opentelemetry"
12+ bug-reports: "https://github.com/ocaml-tracing/ocaml-opentelemetry/issues"
13+ depends: [
14+ "dune" {>= "2.9"}
15+ "ocaml" {>= "4.08"}
16+ "ptime"
17+ "hmap"
18+ "atomic"
19+ "thread-local-storage" {>= "0.2" & < "0.3"}
20+ "odoc" {with-doc}
21+ "alcotest" {with-test}
22+ "pbrt" {>= "3.0" & < "4.0"}
23+ "ocaml-lsp-server" {with-dev-setup}
24+ "ambient-context" {>= "0.2" & < "0.3"}
25+ "ocamlformat" {with-dev-setup & >= "0.27" & < "0.28"}
26+ ]
27+ depopts: ["trace" "lwt" "eio"]
28+ conflicts: [
29+ "trace" {< "0.12"}
30+ ]
31+ build: [
32+ ["dune" "subst"] {dev}
33+ [
34+ "dune"
35+ "build"
36+ "-p"
37+ name
38+ "-j"
39+ jobs
40+ "--promote-install-files=false"
41+ "@install"
42+ "@runtest" {with-test}
43+ "@doc" {with-doc}
44+ ]
45+ ["dune" "install" "-p" name "--create-install-files" name]
46+ ]
47+ dev-repo: "git+https://github.com/ocaml-tracing/ocaml-opentelemetry.git"
48+ url {
49+ src:
50+ "https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz"
51+ checksum: [
52+ "sha256=95bed48a48d324a02ffa27717531d9a68ca3d0166705fbafe076fa58f922d5d2"
53+ "sha512=feb3af4150551885d186d97bd63ef8d3d33214efa54671e39a34fd07a89e3c83663c58c0e63b45a6a1ab44dd761a9a65d40f90ddc207de60294b3f8ce1cdd8c8"
54+ ]
55+ }
56+ x-commit-hash: "079c499539aefc6cba07351b2cb09c5965a8618d"
You can’t perform that action at this time.
0 commit comments