this repo has no description
1opam-version: "2.0"
2synopsis: "Collect runtime profiling information in CTF format"
3maintainer: "Thomas Leonard <talex5@gmail.com>"
4authors: "Thomas Leonard <talex5@gmail.com>"
5license: "BSD-2-clause"
6homepage: "https://github.com/mirage/mirage-profile"
7doc: "https://mirage.github.io/mirage-profile/"
8bug-reports: "https://github.com/mirage/mirage-profile/issues"
9depends: [
10 "ocaml" {>= "4.04.0"}
11 "dune" {>= "1.0"}
12 "mirage-profile" {= version}
13 "io-page-xen"
14 "io-page"
15 "mirage-xen-minios"
16 "ocplib-endian"
17 "mirage-xen" {>= "4.0.0" & < "5.0.0"}
18 "xenstore"
19]
20build: [
21 ["dune" "build" "-p" name "-j" jobs]
22]
23dev-repo: "git+https://github.com/mirage/mirage-profile.git"
24description: """
25This library can be used to trace execution of OCaml/Lwt programs (such as
26Mirage unikernels) at the level of Lwt threads. The traces can be viewed using
27JavaScript or GTK viewers provided by [mirage-trace-viewer][] or processed by
28tools supporting the [Common Trace Format (CTF)][ctf].
29
30This library adds a Xen MirageOS backend collector.
31"""
32url {
33 src:
34 "https://github.com/mirage/mirage-profile/releases/download/v0.9.1/mirage-profile-v0.9.1.tbz"
35 checksum: [
36 "sha256=2bb6cf03c73c6f45dedc34365c9131b8bdda62390b04d26eb76793a6422a0352"
37 "sha512=23cc4a2a62f5cc05b48d626bd6c8171a442fd46490da6810b1c507fcd7661c7fcd901d8328cddf687af4144136bf0d34b63f8484e32550077ab63d23e6eaea2b"
38 ]
39}
40flags: deprecated
41post-messages: [ "mirage-profile-xen is deprecated" ]
42x-maintenance-intent: ["(none)"]