From ac1e6f8229476685ce450a57f2a5f3e43466728f Mon Sep 17 00:00:00 2001 From: Harry Suryapambagya Date: Thu, 24 Oct 2024 11:32:04 +0800 Subject: [PATCH] Update README.md - update: screenshot - update: checks.yaml --- README.md | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 2c8d2c1..b98a243 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Check out an online demo https://status.harry.id | Light Mode | Dark Mode | |-|-| -| ![Light](https://github.com/user-attachments/assets/28227221-d1e1-442e-89a4-2a0a09615514) | ![Dark](https://github.com/user-attachments/assets/8bbfc364-319a-417d-898d-3e0807b782bf) | +| ![Light](https://github.com/user-attachments/assets/3ea7b55e-397f-4f7c-8189-64b74a03594b) | ![Dark](https://github.com/user-attachments/assets/92072f9e-1031-4f07-8392-1111df57453a) | ## Features @@ -60,21 +60,28 @@ Check out an online demo https://status.harry.id 2. Edit the `checks.yaml` file to add or modify the services you want to monitor. Example: ```yaml - - name: GitHub Home - type: http - host: https://github.com - url: https://github.com # (optional: URL review/clickable) - ssc: True # (optional: if the server uses a self-signed certificate) - expected_code: 200 - - - name: Google DNS - type: ping - host: 8.8.8.8 - - - name: Database - type: port - host: db.example.com - port: 5432 + - title: 'Group 1' + checks: + - name: GitHub Home + type: http + host: https://github.com + url: https://docs.github.com/en + expected_code: 200 + + - name: Google Public DNS + type: ping + host: 8.8.8.8 + + - name: Dummy MySQL Database + type: port + host: db.example.com + port: 3306 + + - name: Home Server with Self-Signed Certs + type: http + host: https://homeserver.local + ssc: True + expected_code: 200 ``` 3. (Optional) Customize the `incidents.md` file to add any known incidents or maintenance schedules.