{"id":29427538,"url":"https://github.com/atharvbyadav/silentpulse","last_synced_at":"2025-07-30T04:09:07.628Z","repository":{"id":303864328,"uuid":"1016949933","full_name":"atharvbyadav/SilentPulse","owner":"atharvbyadav","description":"A GitHub Actions-powered pulse engine to silently keep your services alive. Minimal, automated and made for makers.","archived":false,"fork":false,"pushed_at":"2025-07-18T09:01:07.000Z","size":123,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-18T09:32:44.794Z","etag":null,"topics":["automation","cron-jobs","github-actions","keepalive","ping","pinger","python-script","serverless","uptime","uptime-monitor"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atharvbyadav.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}},"created_at":"2025-07-09T19:28:13.000Z","updated_at":"2025-07-18T09:01:10.000Z","dependencies_parsed_at":"2025-07-13T00:30:37.168Z","dependency_job_id":null,"html_url":"https://github.com/atharvbyadav/SilentPulse","commit_stats":null,"previous_names":["atharvbyadav/silentpulse"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/atharvbyadav/SilentPulse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atharvbyadav%2FSilentPulse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atharvbyadav%2FSilentPulse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atharvbyadav%2FSilentPulse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atharvbyadav%2FSilentPulse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atharvbyadav","download_url":"https://codeload.github.com/atharvbyadav/SilentPulse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atharvbyadav%2FSilentPulse/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267808152,"owners_count":24147387,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["automation","cron-jobs","github-actions","keepalive","ping","pinger","python-script","serverless","uptime","uptime-monitor"],"created_at":"2025-07-12T13:09:21.864Z","updated_at":"2025-07-30T04:09:06.768Z","avatar_url":"https://github.com/atharvbyadav.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⚡ SilentPulse\n\n\u003e A lightweight GitHub Actions-powered pulse engine to silently keep your essential services alive.  \n\u003e Built by [Atharv Yadav](https://github.com/atharvbyadav)\n\n---\n\n![SilentPulse Status](https://github.com/atharvbyadav/SilentPulse/actions/workflows/silentpulse.yml/badge.svg)\n![Last Commit](https://img.shields.io/github/last-commit/atharvbyadav/SilentPulse)\n![Repo Size](https://img.shields.io/github/repo-size/atharvbyadav/SilentPulse)\n![Stars](https://img.shields.io/github/stars/atharvbyadav/SilentPulse?style=social)\n![Uptime](https://img.shields.io/badge/Uptime-Operational-brightgreen?style=flat-square\u0026logo=heartbeat)\n\n---\n\n## 🔧 Features (v1.1)\n\n- 🧠 **Pulse Engine:** Uses GitHub Actions to periodically \"pulse\" (ping) your web services\n- 📡 **Custom URL list:** Easily editable via `data/urls.json`\n- 📄 **CSV Logging:** Outputs detailed pulse logs to `logs/pulse-log.csv`\n- 🕒 **Scheduled Execution:** Runs automatically every 30 minutes\n- 🛠️ **Manual Trigger Support:** You can also run it anytime from the GitHub Actions tab\n- 📁 **Minimal Dependencies:** Just Python + `requests`\n\n---\n\n## 🚀 How It Works\n\nSilentPulse reads a list of URLs from `data/urls.json`, sends GET requests to each and logs:\n\n- HTTP status code\n- Response time (ms)\n- Timestamp\n- Error info (if failed)\n\n---\n\n## 📦 Project Structure\n\n```\n\nSilentPulse/\n├── .github/workflows/silentpulse.yml   # GitHub Actions workflow\n├── data/urls.json                      # List of URLs to pulse\n├── logs/pulse-log.csv                  # Auto-generated pulse logs\n├── src/pulse.py                        # Core pulse script\n├── LICENSE\n├── requirements.txt                    # Python dependencies\n└── README.md                           # You’re reading it\n\n```\n\n---\n\n## ✍️ Setup\n\n\u003e 💡 This project runs **entirely on GitHub Actions** — no server needed.\n\n1. **Fork or clone** this repo\n2. Add your URLs to `data/urls.json`:\n\n   ```json\n   [\"https://your-app-1.com\", \"https://your-streamlit-app.net\"]\n   ```\n\n3. (Optional) Modify `pulse.py` or logging logic if needed\n4. Push to your `main` branch\n\n---\n\n## 🔄 GitHub Actions\n\nThe workflow is located at `.github/workflows/silentpulse.yml`.\n\nIt runs:\n\n- 🕓 Every 30 minutes (`0,30 * * * *`)\n- ✅ Can also be run manually from GitHub UI\n\nYou can see your logs in the **Actions → Run SilentPulse** → `Run SilentPulse` step.\n\n---\n\n## 🧪 Output Example\n\nConsole output from a pulse run:\n\n```\n[2025-07-09T20:20:08Z] https://reconx.streamlit.app =\u003e 200 (1041)ms\n[2025-07-09T20:20:08Z] https://ghostpath.onrender.com =\u003e FAILED (-)ms\n```\n\nSample CSV log:\n\n```csv\ntimestamp,url,status,latency,error\n2025-07-09T20:20:08Z,https://reconx.streamlit.app,200,1041,\n2025-07-09T20:20:08Z,https://ghostpath.onrender.com,FAILED,,ConnectionError\n```\n\n---\n\n## 🚧 Roadmap (Future Versions)\n\n\u003e SilentPulse is modular — features will be added incrementally.\n\n- 📊 Web Dashboard for uptime monitoring\n- 📈 Uptime % and pulse stats\n- 🔔 Alerts (Telegram, Discord, Email)\n- 🌐 Dynamic status badges\n- 🌍 Public status page\n- 🧩 Plugin system for multiple services\n\n---\n\n## 📜 License\n\n[MIT License](LICENSE)\n\n---\n\n## 🤝 Contributing\n\nWant to extend SilentPulse? Open a PR or raise an issue.\nLet’s make uptime silent and strong. 💡\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatharvbyadav%2Fsilentpulse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatharvbyadav%2Fsilentpulse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatharvbyadav%2Fsilentpulse/lists"}