-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5651 from psafont/test-tracing
- Loading branch information
Showing
16 changed files
with
205 additions
and
349 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,5 @@ | |
(test | ||
(name test_tracing) | ||
(modules test_tracing) | ||
(package xapi-tracing) | ||
(libraries tracing alcotest uuid)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
synopsis: "A plugin library for the xapi performance monitoring daemon" | ||
description: | ||
"This library allows one to expose a datasource which can then be sampled by the performance monitoring daemon." | ||
maintainer: ["Xapi project maintainers"] | ||
authors: ["[email protected]"] | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
homepage: "https://xapi-project.github.io/" | ||
bug-reports: "https://github.com/xapi-project/xen-api/issues" | ||
dev-repo: "git+https://github.com/xapi-project/xen-api.git" | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
depends: [ | ||
"dune" {>= "2.0"} | ||
"ocaml" | ||
"dune" {build & >= "1.0+beta10"} | ||
"astring" | ||
"rpclib" | ||
"xapi-forkexecd" | ||
"xapi-stdext-pervasives" | ||
"xapi-stdext-std" | ||
"xapi-stdext-threads" | ||
"xapi-stdext-unix" | ||
"xapi-idl" | ||
"xapi-rrd-transport" {>= "0.9.0"} | ||
"xapi-forkexecd" {version} | ||
"xapi-stdext-pervasives" {version} | ||
"xapi-stdext-std" {version} | ||
"xapi-stdext-threads" {version} | ||
"xapi-stdext-unix" {version} | ||
"xapi-idl" {version} | ||
"xenstore_transport" | ||
] | ||
synopsis: "A plugin library for the xapi performance monitoring daemon" | ||
description: """ | ||
This library allows one to expose a datasource which can then be | ||
sampled by the performance monitoring daemon.""" | ||
url { | ||
src: | ||
"https://github.com/xapi-project/xen-api/archive/master.tar.gz" | ||
} | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/xapi-project/xen-api.git" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: "John Else" | ||
homepage: "https://github.com/xapi-project/xen-api" | ||
dev-repo: "git+https://github.com/xapi-project/xen-api.git" | ||
bug-reports: "https://github.com/xapi-project/xen-api" | ||
build: [[ "dune" "build" "-p" name "-j" jobs ]] | ||
synopsis: "Shared-memory protocols for exposing performance counters" | ||
description: | ||
"VMs running on a Xen host can use this library to expose performance counters which can be sampled by the xapi performance monitoring daemon." | ||
maintainer: ["Xapi project maintainers"] | ||
authors: ["John Else"] | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
homepage: "https://xapi-project.github.io/" | ||
bug-reports: "https://github.com/xapi-project/xen-api/issues" | ||
depends: [ | ||
"dune" {>= "2.0"} | ||
"ocaml" | ||
"dune" {build & >= "1.0+beta10"} | ||
"cmdliner" | ||
"xapi-rrd-transport" {>= "2.0.0"} | ||
] | ||
synopsis: "Shared-memory protocols for exposing performance counters" | ||
description: """ | ||
VMs running on a Xen host can use this library to expose performance | ||
counters which can be sampled by the xapi performance monitoring daemon.""" | ||
url { | ||
src: "https://github.com/xapi-project/xen-api/archive/master.tar.gz" | ||
} | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/xapi-project/xen-api.git" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.