-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
52 lines (52 loc) · 1.75 KB
/
app.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
44
45
46
47
48
49
50
51
52
{
"name": "heroku-datadog-services",
"description": "Establish Datadog monitoring of Heroku add-ons or other URL-based services",
"keywords": [
"datadog",
"metrics",
"heroku",
"env",
"postgres",
"postgresql",
"elasticsearch"
],
"website": "https://github.com/covidence/heroku-datadog-services",
"repository": "https://github.com/covidence/heroku-datadog-services",
"success_url": "/",
"env": {
"DD_API_KEY": {
"descriptions": "Datadog API key (https://app.datadoghq.com/account/settings#api)",
"required": true
},
"DD_APM_ENABLED": {
"value": "false",
"required": false
},
"DD_HOSTNAME": {
"description": "Hostname for this agent; if blank, will be calculated from dyno name",
"value": "service-metrics-collector",
"required": false
},
"DATABASE_URL": {
"description": "Set this or any other *_URL variable to have Datadog manage the service behind it, if supported",
"required": false
},
"DATABASE_URL_TAGS": {
"description": "Tag metrics from DATABASE_URL with these tags; any *_TAG var will be applied to the corresponding service variable",
"required": false
},
"ELASTICSEARCH_URL": {
"description": "Set this or any other *_URL variable to have Datadog manage the service behind it, if supported",
"required": false
},
"ELASTICSEARCH_URL_TAGS": {
"description": "Tag metrics from ELASTICSEARCH_URL with these tags; any *_TAG var will be applied to the corresponding service variable",
"required": false
}
},
"buildpacks": [
{"url": "heroku/ruby"},
{"url": "https://github.com/DataDog/heroku-buildpack-datadog"},
{"url": "https://github.com/ryandotsmith/null-buildpack"}
]
}