{"id":13797837,"url":"https://github.com/mehatab/fettle","last_synced_at":"2026-01-15T01:23:21.383Z","repository":{"id":54352659,"uuid":"521632923","full_name":"mehatab/fettle","owner":"mehatab","description":"Free GitHub-powered beautiful status page utilizing GitHub Pages, Actions, and Issues for real-time updates and incident management. Make sure to share love by giving it a star.🌟","archived":false,"fork":false,"pushed_at":"2026-01-10T12:01:01.000Z","size":10175,"stargazers_count":260,"open_issues_count":6,"forks_count":101,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-10T21:52:00.193Z","etag":null,"topics":["monitoring","nextjs","status","status-page"],"latest_commit_sha":null,"homepage":"https://fettle.mehatab.info","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mehatab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-08-05T12:38:15.000Z","updated_at":"2026-01-10T12:01:05.000Z","dependencies_parsed_at":"2023-09-23T14:50:04.849Z","dependency_job_id":"93a222ae-2405-488b-87dc-ab205fd869fe","html_url":"https://github.com/mehatab/fettle","commit_stats":null,"previous_names":["mehatab/status-page","mehatab/fettle"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mehatab/fettle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehatab%2Ffettle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehatab%2Ffettle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehatab%2Ffettle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehatab%2Ffettle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mehatab","download_url":"https://codeload.github.com/mehatab/fettle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mehatab%2Ffettle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28441031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"ssl_error","status_checked_at":"2026-01-15T00:55:20.945Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["monitoring","nextjs","status","status-page"],"created_at":"2024-08-04T00:00:34.402Z","updated_at":"2026-01-15T01:23:21.369Z","avatar_url":"https://github.com/mehatab.png","language":"TypeScript","funding_links":[],"categories":["Opensource","TypeScript"],"sub_categories":[],"readme":"\n# Fettle 💟 \n\n**Fettle** is the open-source status page, powered entirely by GitHub Actions, Issues, and Pages.\n\n\u003cimg src=\"./public/ss.png\" /\u003e\n\n\n# Usage\nFirst of all, you need to fork this repository.\n\n## Update URL's\nUpdate the urls and name in `urls.cfg` file present in `public \u003e urls.cfg` file.\n\n```text\nGoogle=https://google.com\nFacebook=https://facebook.com\n```\n\n## Incidents URL update\nGo to `src \u003e incidents \u003e hooks \u003e useIncidents.tsx` file and update the url with your repository url.\n\nReplace **mehatab/fettle** with your **username/repo-name**\n```\nhttps://api.github.com/repos/mehatab/fettle/issues?per_page=20\u0026state=all\u0026labels=incident\n```\n\n## Service status URL update\nGo to `src \u003e services \u003e hooks \u003e useServices.tsx` file and update the url with your repository url.\n\nReplace **mehatab/fettle** with your **username/repo-name**\n```\nhttps://raw.githubusercontent.com/mehatab/fettle/main/public/status/${key}_report.log\n```\n\nGo to `src \u003e services \u003e hooks \u003e useSystemStatus.tsx` file and update the url with your repository url.\n\nReplace **mehatab/fettle** with your **username/repo-name**\n```\nhttps://raw.githubusercontent.com/mehatab/fettle/main/public/status/${key}_report.log\n```\n\n## Deployment setup\n\nThen, you need to enable GitHub Pages on your forked repository. You can do this by going to `Settings \u003e Pages` and enabling it on the `main` branch.\n\nIn Build and deployment section select GitHub Actions.\n\n## Change monitoring interval\nIf you want to change the time interval of monitoring then you can change it in `.github \u003e workflows \u003e health-check.yml` file.\nupdate the cron time in the following line.\n\n```yaml\n    on:\n      schedule:\n        - cron: \"0 0/12 * * *\"\n```\n\n## Reporting your first incident\n1. Go to issues tab \n2. Create a new label `incident`\n3. Create a issue\n4. Add the label `incident` to the issue\n\n\n# How it works\n\n- Hosting\n    - GitHub Pages is used for hosting the status page.\n\n- Monitoring\n    - Github Workflow will be triggered every 1 Hr (Configurable) to visit the website.\n    - Response status and response time is commited to github repository.\n\n- Incidents\n    - Github issue is used for incident management.\n\n# Contributing\nFeel free to submit pull requests and/or file issues for bugs and suggestions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmehatab%2Ffettle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmehatab%2Ffettle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmehatab%2Ffettle/lists"}