forked from eidam/cf-workers-status-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
60 lines (52 loc) · 1.79 KB
/
config.yaml
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
53
54
55
56
57
58
59
60
settings:
title: 'Sovryn Status Page'
url: 'https://status.sovryn.app' # used for Slack messages
logo: logo-192x192.png # image in ./public/ folder
daysInHistogram: 90 # number of days you want to display in histogram
collectResponseTimes: true # collects avg response times from CRON locations
allmonitorsOperational: 'All Systems Operational'
notAllmonitorsOperational: 'Not All Systems Operational'
monitorLabelOperational: 'Operational'
monitorLabelNotOperational: 'Not Operational'
monitorLabelNoData: 'No data'
dayInHistogramNoData: 'No data'
dayInHistogramOperational: 'All good'
dayInHistogramNotOperational: ' incident(s)' # xx incident(s) recorded
monitors:
- id: sovryn-app # unique identifier
name: www.sovryn.app
# description: 'You write code. They handle the rest.' # default=empty
url: 'https://www.sovryn.app/' # URL to fetch
method: GET # default=GET
expectStatus: 200 # operational status, default=200
followRedirect: false # should fetch follow redirects, default=false
- id: live-sovryn-app
name: live.sovryn.app
url: 'https://live.sovryn.app'
method: GET
expectStatus: 200
- id: bitocracy-sovryn-app
name: bitocracy.sovryn.app
url: 'https://bitocracy.sovryn.app'
method: GET
expectStatus: 200
- id: bridge-sovryn-app
name: bridge.sovryn.app
url: 'https://bridge.sovryn.app'
method: GET
expectStatus: 200
- id: sovryn-app-blog
name: The Sovryn Blog
url: 'https://www.sovryn.app/blog/'
method: GET
expectStatus: 200
- id: mainnet-sovryn-app
name: RSK Node
url: 'https://mainnet.sovryn.app'
method: GET
expectStatus: 200
- id: backend-sovryn-app
name: API service
url: 'https://backend.sovryn.app/sov/current-price'
method: GET
expectStatus: 200