blob: 246c7e4517747b081010fc5a8c34b3f4183dcccf (
plain)
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
|
{
"name": "prometheus-cpp",
"version-string": "0.12.3",
"port-version": 1,
"description": "Prometheus Client Library for Modern C++",
"default-features": [
"compression",
"pull"
],
"features": {
"compression": {
"description": "Enable zlib compression",
"dependencies": [
"zlib"
]
},
"pull": {
"description": "Support for regular pull mode",
"dependencies": [
"civetweb"
]
},
"push": {
"description": "Support push gateway",
"dependencies": [
"curl"
]
},
"tests": {
"description": "Additional testing support",
"dependencies": [
"gtest"
]
}
}
}
|