-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from dabluecaboose/master
Adds support for groupings in status page and checks.yaml
- Loading branch information
Showing
3 changed files
with
99 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,77 @@ | ||
- name: GitHub Home | ||
type: http | ||
host: https://github.com | ||
expected_code: 200 | ||
- title: 'Group 1' | ||
checks: | ||
- name: GitHub Home | ||
type: http | ||
host: https://github.com | ||
expected_code: 200 | ||
|
||
- name: GitHub API | ||
type: http | ||
host: https://api.github.com | ||
expected_code: 200 | ||
- name: GitHub API | ||
type: http | ||
host: https://api.github.com | ||
expected_code: 200 | ||
|
||
- name: Wikipedia Home | ||
type: http | ||
host: https://www.wikipedia.org | ||
expected_code: 200 | ||
- name: Wikipedia Home | ||
type: http | ||
host: https://www.wikipedia.org | ||
expected_code: 200 | ||
|
||
- name: Wikipedia API | ||
type: http | ||
host: https://en.wikipedia.org/w/api.php | ||
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 | ||
- name: Hacker News | ||
type: http | ||
host: https://news.ycombinator.com | ||
expected_code: 200 | ||
|
||
- name: Google Home | ||
type: http | ||
host: https://www.google.com | ||
expected_code: 200 | ||
- name: Google Home | ||
type: http | ||
host: https://www.google.com | ||
expected_code: 200 | ||
|
||
- name: Cloudflare DNS Checker | ||
type: ping | ||
host: 1.1.1.1 | ||
- 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: 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 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: Dummy MySQL Database | ||
type: port | ||
host: db.example.com | ||
port: 3306 | ||
|
||
- name: Amazon Web Services | ||
type: http | ||
host: https://aws.amazon.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: 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: Twitter | ||
type: http | ||
host: https://twitter.com | ||
expected_code: 200 | ||
|
||
- name: Facebook Home | ||
type: http | ||
host: https://www.facebook.com | ||
expected_code: 200 | ||
- name: Localhost | ||
type: ping | ||
host: localhost | ||
- name: Facebook Home | ||
type: http | ||
host: https://www.facebook.com | ||
expected_code: 200 | ||
|
||
- name: Localhost | ||
type: ping | ||
host: localhost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters