forked from 42ity/fty-metric-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
78 lines (68 loc) · 3 KB
/
project.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<project
name = "fty-metric-cache"
description = "Knows current values of any METRIC in the system"
script = "zproject.gsl"
email = "[email protected]"
url = "https://42ity.org"
license = "GPL-2.0+"
repository = "https://github.com/42ity/fty-metric-cache"
>
<target name = "debian" />
<target name = "redhat" />
<target name = "travis" />
<target name = "jenkins" >
<option name = "agent_label" value = "devel-image && x86_64" />
<option name = "triggers_pollSCM" value = "H/2 * * * *" />
<option name = "test_cppcheck" value = "1" />
<option name = "use_test_retry" value = "3" />
<option name = "build_docs" value = "1" />
<option name = "dist_docs" value = "1" />
</target>
<include filename = "license.xml" />
<version major = "1" minor = "0" patch = "0" />
<abi current = "1" revision = "0" age = "0" />
<use project = "czmq"
repository="https://github.com/42ity/czmq.git"
release = "v3.0.2-FTY-master"
min_major = "3" min_minor = "0" min_patch = "2" >
<use project = "libzmq"
repository="https://github.com/42ity/libzmq.git"
release = "4.2.0-FTY-master" >
<use project = "libsodium" prefix = "sodium"
repository = "https://github.com/42ity/libsodium.git"
release = "1.0.5-FTY-master"
test = "sodium_init" />
</use>
</use>
<use project = "malamute" min_major = "1" test = "mlm_server_test"
repository="https://github.com/42ity/malamute.git"
release = "1.0-FTY-master"
/>
<use project = "fty-proto" libname = "libfty_proto" header="ftyproto.h" prefix="fty_proto"
min_major = "1" min_minor = "0" min_patch = "0"
repository = "https://github.com/42ity/fty-proto.git"
test = "fty_proto_test" >
<use project = "malamute" />
</use>
<use project = "fty-common-logging" libname = "libfty_common_logging" header="fty-log/fty_logger.h"
repository = "https://github.com/42ity/fty-common-logging.git"
release = "master"
test = "fty_common_logging_selftest" >
<use project = "log4cplus" header = "log4cplus/logger.h" test = "appender_test"
repository = "https://github.com/42ity/log4cplus.git"
release = "1.1.2-FTY-master"
/>
</use>
<class name = "actor commands" private = "1">Actor commands</class>
<class name = "rt" private = "1">Metric cache structure</class>
<class name = "mailbox" private = "1">Mailbox deliver</class>
<class name = "fty-metric-cache-server" state = "stable">
Actor listening on metrics with request reply protocol
</class>
<main name = "fty-metric-cache" service = "1" no_config = "1">
Listens on all metrics in order to remember the last ones
</main>
<main name = "fty-metric-cache-cli">
Command line interface for fty-metric-cache
</main>
</project>