{"id":31785502,"url":"https://github.com/filaforge/system-widget","last_synced_at":"2026-02-15T08:34:15.853Z","repository":{"id":309694893,"uuid":"1037216791","full_name":"filaforge/system-widget","owner":"filaforge","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-19T23:25:25.000Z","size":2275,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-10T11:55:38.783Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Blade","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/filaforge.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-08-13T08:36:46.000Z","updated_at":"2025-08-13T11:01:04.000Z","dependencies_parsed_at":"2025-08-13T10:25:19.402Z","dependency_job_id":"4d829228-0770-4542-9918-265f8014c825","html_url":"https://github.com/filaforge/system-widget","commit_stats":null,"previous_names":["filaforge/system-widget"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/filaforge/system-widget","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filaforge%2Fsystem-widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filaforge%2Fsystem-widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filaforge%2Fsystem-widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filaforge%2Fsystem-widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/filaforge","download_url":"https://codeload.github.com/filaforge/system-widget/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filaforge%2Fsystem-widget/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29473718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T06:58:05.414Z","status":"ssl_error","status_checked_at":"2026-02-15T06:58:05.085Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2025-10-10T11:55:25.267Z","updated_at":"2026-02-15T08:34:15.826Z","avatar_url":"https://github.com/filaforge.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Filaforge System Widget\n\nA Filament v4 ## Usage\n\nAfter installation and registration, the \"System Monitor\" widget automatically appears on your Filament dashboard. The widget displays:\n\n- **System Metrics**: Real-time CPU, memory, and disk usage\n- **Server Information**: Operating system and server details\n- **Performance Indicators**: Visual performance metrics\n- **Resource Monitoring**: Track system resource consumption\n- **Automatic Updates**: Real-time data refresh\n\nThe widget is designed to provide a quick overview of your server's health directly from your dashboard.\n\n## Configuration\n\nThe plugin works out of the box. You can customize monitoring settings by publishing the configuration:\n\n```bash\nphp artisan vendor:publish --tag=\"system-widget-config\"\n```\n\n## Features\n\n- ✅ Real-time system monitoring widget\n- ✅ CPU, memory, and disk tracking\n- ✅ Clean dashboard integration\n- ✅ Automatic data refresh\n- ✅ Responsive design\n- ✅ Performance visualization\n\n---\n\n**Package**: `filaforge/system-widget`  \n**License**: MIT  \n**Requirements**: PHP ^8.1, Laravel ^12, Filament ^4.0 widget plugin for real-time system monitoring, using a unique namespace to avoid collisions.\n\n![Screenshot](screenshot.png)\n\n## Requirements\n- PHP \u003e= 8.1\n- Laravel 12 (illuminate/support ^12)\n- Filament ^4.0\n- symfony/process ^7.0\n\n## Installation\n\n### Step 1: Install via Composer\n```bash\ncomposer require filaforge/system-widget\n```\n\n### Step 2: Service Provider Registration\nThe service provider is auto-discovered, so no manual registration is required.\n\n### Step 3: Publish Assets (Optional)\nIf the plugin includes publishable assets, you can publish them:\n```bash\nphp artisan vendor:publish --provider=\"Filaforge\\SystemWidget\\SystemWidgetServiceProvider\"\n```\n\n### Step 4: Register the plugin in your panel\n```php\nuse Filaforge\\SystemWidget\\SystemWidgetPlugin;\nuse Filament\\Panel;\n\npublic function panel(Panel $panel): Panel\n{\n    return $panel\n        // ...\n        -\u003eplugin(SystemWidgetPlugin::make());\n}\n```\n\n## Usage\nAfter registration, the “System Monitor” widget appears on the dashboard.\n\n---\nPackage: `filaforge/system-widget`# Filaforge System Monitor\n\nA Filament v4 dashboard widget for real-time server monitoring.\n\n## Installation\n\n1) Require the package (this repo is included as a local path repo in this project):\n\n```\ncomposer require filaforge/system-monitor\n```\n\n2) Publish the config (optional):\n\n```\nphp artisan vendor:publish --tag=config --provider=\"Filaforge\\SystemMonitor\\Providers\\SystemMonitorServiceProvider\"\n```\n\n3) Register the plugin on your target panel provider:\n\n```php\nuse Filaforge\\SystemMonitor\\SystemMonitorPlugin;\n\npublic function panel(\\Filament\\Panel $panel): \\Filament\\Panel\n{\n    return $panel\n        // ...\n        -\u003eplugin(SystemMonitorPlugin::make());\n}\n```\n\nThe widget will be available on the dashboard and only visible to authorized users, based on the `allow_roles` setting in the published config.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffilaforge%2Fsystem-widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffilaforge%2Fsystem-widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffilaforge%2Fsystem-widget/lists"}