-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchecks.json
More file actions
35 lines (35 loc) · 785 Bytes
/
checks.json
File metadata and controls
35 lines (35 loc) · 785 Bytes
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
[
{
"function": "checks.check_rabbitmq",
"parameters": {
"RABBITMQ_URI": "rabbitmq_uri"
}
},
{
"function": "checks.check_mongo",
"parameters": {
"MONGO_URI": "mongo_uri"
}
},
{
"function": "checks.check_url",
"parameters": {
"URL": "url",
"URL_TEXT": "text"
}
},
{
"function": "checks.check_postgresql",
"parameters": {
"PGURI":"dsn",
"PG_URI":"dsn",
"PGUSER": "user",
"PGPASSWORD": "password",
"PGHOST": "host",
"PGPORT": "port",
"PGDATABASE": "dbname",
"PGTABLE": "table",
"PG_TABLE": "table"
}
}
]