forked from better/segment2datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
33 lines (33 loc) · 970 Bytes
/
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
{
"name": "Segment to Datadog",
"description": "A minimal app to forward Segment events to Datadog. Useful for monitoring and alerting on Segment events within Datadog.",
"repository": "https://github.com/monkeylearn/segment2datadog",
"website": "https://github.com/monkeylearn/segment2datadog",
"keywords": ["segment", "datadog", "monitoring", "alerts", "forwarding"],
"buildpacks": [
{
"url": "https://github.com/DataDog/heroku-buildpack-datadog.git"
},
{
"url": "heroku/python"
}
],
"env": {
"DD_API_KEY": {
"description": "Your Datadog API key.",
"required": true
},
"DD_APP_KEY": {
"description": "Your Datadog app key.",
"required": true
},
"DD_HOSTNAME": {
"description": "Name of your Heroku app.",
"required": true
},
"SEGMENT_SHARED_SECRET": {
"description": "Your Segment Webhooks destination Shared Secret.",
"required": true
}
}
}