-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMETA.json.in
45 lines (45 loc) · 1.31 KB
/
META.json.in
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
{
"name": "prometheus_fdw",
"abstract": "Postgres Foreign Data Wrapper for Prometheus Data",
"description": "Prometheus_fdw is an integration of Prometheus monitoring data into Postgres. It enables querying for Prometheus metrics directly within Postgres, bridging the gap between Prometheus monitoring and Postgres's robust database capabilities.",
"version": "@CARGO_VERSION@",
"maintainer": [
"Tembo <[email protected]>"
],
"license": "postgresql",
"provides": {
"prometheus_fdw": {
"abstract": "Postgres Foreign Data Wrapper for Prometheus Data",
"file": "src/lib.rs",
"docfile": "README.md",
"version": "@CARGO_VERSION@"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "15.0.0"
}
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/tembo-io/prometheus_fdw/issues"
},
"repository": {
"url": "git://github.com/tembo-io/prometheus_fdw.git",
"web": "https://github.com/tembo-io/prometheus_fdw/",
"type": "git"
}
},
"generated_by": "Jay Kothari",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
},
"tags": [
"fdw",
"foreign data wrapper",
"prometheus"
]
}