-
Notifications
You must be signed in to change notification settings - Fork 27
/
app.json
52 lines (52 loc) · 1.73 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": "PagerBeauty",
"description": "PagerDuty on-call dashboard widget",
"repository": "https://github.com/sergiitk/pagerbeauty",
"website": "http://work.sergii.org/pagerbeauty",
"keywords": [
"pagerduty",
"datadog",
"dashboard",
"wallboard",
"on-call",
"widget",
"monitor",
"oncall",
"incidents",
"incident-management",
"schedules",
"schedule",
"datadog-dashboard",
"datadog-pagerduty",
"embeds",
"pager",
"oncalls-widget",
"grafana",
"grafana-dashboard",
"grafana-pagerduty"
],
"env": {
"PAGERBEAUTY_PD_API_KEY": {
"description": "PagerDuty REST API v2 Access Key (Read-only). Generate your key https://support.pagerduty.com/docs/using-the-api or try test key y_NbAkKc66ryYTWUXYEu",
"value": "y_NbAkKc66ryYTWUXYEu"
},
"PAGERBEAUTY_PD_SCHEDULES": {
"description": "Comma-separated list of PagerDuty schedule ids. You can find schedule id in the URL of the schedule on PagerDuty website after symbol #. Or try test schedules: PJ1P5JQ,P538IZH",
"value": "PJ1P5JQ,P538IZH"
},
"PAGERBEAUTY_HTTP_USER": {
"description": "(optional) Enable basic HTTP authentication: user name",
"required": false
},
"PAGERBEAUTY_HTTP_PASSWORD": {
"description": "(optional) Basic HTTP authentication password",
"required": false
},
"PAGERBEAUTY_HTTP_ACCESS_TOKEN": {
"description": "(optional) Enable access_token authentication. Makes possible embedding PagerBeauty in browsers that don't support iframes with basic HTTP authentication enabled. Append ?access_token=your_token to schedule URL to make it embeddable",
"generator": "secret",
"required": false
}
},
"success_url": "/"
}