-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
checks.yaml
82 lines (67 loc) · 1.68 KB
/
checks.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
- title: 'Group 1'
checks:
- name: GitHub Home
type: http
host: https://github.com
url: https://docs.github.com/en
expected_code: 200
- name: GitHub API
type: http
host: https://api.github.com
url: https://api.github.com/users
expected_code: 200
- name: Wikipedia Home
type: http
host: https://www.wikipedia.org
url: https://en.wikipedia.org/wiki/Main_Page
expected_code: 200
- name: Wikipedia API
type: http
host: https://en.wikipedia.org/w/api.php
expected_code: 200
- name: Hacker News
type: http
host: https://news.ycombinator.com
expected_code: 200
- title: 'Group 2'
checks:
- name: Cloudflare DNS Checker
type: ping
host: 1.1.1.1
- name: Google Public DNS
type: ping
host: 8.8.8.8
- name: Dummy Postgres Database
type: port
host: ec2-54-173-89-248.compute-1.amazonaws.com
port: 5432
- name: Dummy MySQL Database
type: port
host: db.example.com
port: 3306
- name: Google Home
type: http
host: https://www.google.com
expected_code: 200
- title: 'Group 3'
checks:
- name: Amazon Web Services
type: http
host: https://aws.amazon.com
expected_code: 200
- name: AWS S3 API
type: http
host: https://s3.amazonaws.com
expected_code: 200
- name: Twitter
type: http
host: https://twitter.com
expected_code: 200
- name: Localhost
type: ping
host: localhost
- name: Home Server with Self-Signed Certs
type: http
host: https://homeserver.local
ssc: True
expected_code: 200