-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMETA.json
43 lines (43 loc) · 1.23 KB
/
META.json
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
{
"name": "pg_sqlog",
"abstract": "An extension providing access to PostgreSQL logs through SQL interface.",
"description": "pg_sqlog allows to query a foreign table, pointing to a log, recorded in a CSV format. It has special functions to extract the query duration of each query, as well as to group similar queries together.",
"version": "1.6.0",
"maintainer": "Kouber Saparev <kouber@gmail.com>",
"license": "bsd",
"tags": [ "csvlog", "csv", "logging", "log", "fdw" ],
"prereqs": {
"runtime": {
"requires": {
"file_fdw": 0
}
}
},
"provides": {
"pg_sqlog": {
"file": "src/pg_sqlog--1.6.sql",
"docfile": "README.md",
"version": "1.6.0",
"abstract": "Provide SQL interface to logs"
},
"config": {
"file": "conf/pg_sqlog.conf",
"version": "1.6.0",
"abstract": "Required PostgreSQL configuration"
}
},
"resources": {
"repository": {
"url": "https://github.com/kouber/pg_sqlog.git",
"web": "https://github.com/kouber/pg_sqlog/",
"type": "git"
},
"bugtracker": {
"web": "https://github.com/kouber/pg_sqlog/issues"
}
},
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
}
}