{"id":26678140,"url":"https://github.com/telexintegrations/smart-log-error-tracker","last_synced_at":"2025-10-10T01:17:07.441Z","repository":{"id":278965572,"uuid":"934427536","full_name":"telexintegrations/Smart-Log-Error-Tracker","owner":"telexintegrations","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-08T10:49:37.000Z","size":391,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-08T12:28:02.658Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/telexintegrations.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-02-17T20:16:15.000Z","updated_at":"2025-10-08T10:49:41.000Z","dependencies_parsed_at":"2025-02-22T21:20:13.588Z","dependency_job_id":"d349263a-cc4d-4b01-8c4d-ae5a03670881","html_url":"https://github.com/telexintegrations/Smart-Log-Error-Tracker","commit_stats":null,"previous_names":["telexintegrations/smart-log-error-tracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/telexintegrations/Smart-Log-Error-Tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telexintegrations%2FSmart-Log-Error-Tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telexintegrations%2FSmart-Log-Error-Tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telexintegrations%2FSmart-Log-Error-Tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telexintegrations%2FSmart-Log-Error-Tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/telexintegrations","download_url":"https://codeload.github.com/telexintegrations/Smart-Log-Error-Tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telexintegrations%2FSmart-Log-Error-Tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002400,"owners_count":26083373,"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-10-09T02:00:07.460Z","response_time":59,"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":[],"created_at":"2025-03-26T05:14:59.865Z","updated_at":"2025-10-10T01:17:07.418Z","avatar_url":"https://github.com/telexintegrations.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Smart-Log-Error-Tracker\n\nA Telex integration specialized in monitoring and reporting Nginx error logs. This service analyzes Nginx error logs and reports them through Telex's webhook system, with planned support for remote Nginx instances.\n\n\n## Features\n\nCurrent Features:\n- Local Nginx error log monitoring\n- Intelligent error parsing and classification\n- Configurable error thresholds\n- Severity-based error categorization\n- Real-time Nginx error detection\n- Detailed error analysis and reporting\n\nUpcoming Features:\n- Remote Nginx instance monitoring\n- Multi-instance support\n- Dynamic log source configuration\n- Real-time remote log streaming\n- User authentication and access control\n- Custom alert configurations per instance\n- Dashboard for monitoring multiple Nginx servers\n\n## Prerequisites\n\n- Node.js v20.11.1 or higher\n- npm v10.x or higher\n- Access to Nginx error logs\n- Telex webhook URL (for production)\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone \u003crepository-url\u003e\ncd nginxLogErrorTracker\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n```\n\n3. Configure environment variables:\n\n```bash\ncp .env.example .env\n# Edit .env with your configuration\n```\n\n## Configuration\n\nCreate a `.env` file with the following variables:\n\n```env\nNODE_ENV=development\nNGINX_LOG_PATH=C:\\\\nginx-1.27.4\\\\logs\\\\error.log  # Update with your Nginx log path\nERROR_THRESHOLD=1\nTELEX_WEBHOOK_URL=https://telex.example.com/webhook\n```\n\n## Usage\n\n### Development\n\n```bash\nnpm run start\n```\n\n### Testing\n\n```bash\nnpm test\n```\n\n### Manual Testing\n\n```bash\nnpm run manual-test\n```\n\n## Error Classification\n\nThe system classifies Nginx errors into the following severity levels:\n\n- 🔴 Emergency/Critical (emerg, alert, crit) - Severity 7-5\n- 🔴 Error (error) - Severity 4\n- 🟡 Warning (warn) - Severity 3\n- 🟢 Notice (notice) - Severity 2\n- ℹ️ Info (info) - Severity 1\n- 🔍 Debug (debug) - Severity 0\n\n## Roadmap\n\n1. Remote Instance Support\n   - Secure remote log access\n   - Multiple instance management\n   - Instance health monitoring\n\n2. User Management\n   - Authentication system\n   - Role-based access control\n   - Instance access permissions\n\n3. Enhanced Monitoring\n   - Real-time dashboard\n   - Custom alert rules\n   - Historical data analysis\n\n4. Advanced Features\n   - Log pattern learning\n   - Predictive error detection\n   - Custom reporting formats\n     ---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelexintegrations%2Fsmart-log-error-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftelexintegrations%2Fsmart-log-error-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelexintegrations%2Fsmart-log-error-tracker/lists"}