PHPackages                             filaforge/filament-system-monitor - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. filaforge/filament-system-monitor

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

filaforge/filament-system-monitor
=================================

System monitor plugin widgets for Filament v4

v1.0.0(8mo ago)00MITBladePHP ^8.1

Since Aug 19Pushed 8mo agoCompare

[ Source](https://github.com/filaforge/filament-system-monitor)[ Packagist](https://packagist.org/packages/filaforge/filament-system-monitor)[ Docs](https://github.com/filaforge/system-monitor)[ RSS](/packages/filaforge-filament-system-monitor/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (4)Versions (5)Used By (0)

Filaforge System Monitor
========================

[](#filaforge-system-monitor)

A powerful Filament plugin that provides comprehensive system monitoring and performance metrics directly in your admin panel.

Features
--------

[](#features)

- **Real-time Monitoring**: Live system performance metrics and status
- **Resource Tracking**: Monitor CPU, memory, disk, and network usage
- **Process Management**: View and manage running processes
- **Service Status**: Monitor system services and their health
- **Performance Metrics**: Track system performance over time
- **Alert System**: Configure notifications for critical thresholds
- **Dashboard Widgets**: Beautiful monitoring widgets for your dashboard
- **Historical Data**: Store and analyze performance trends
- **Multi-server Support**: Monitor multiple servers from one interface
- **Custom Metrics**: Add custom monitoring metrics and alerts

Installation
------------

[](#installation)

### 1. Install via Composer

[](#1-install-via-composer)

```
composer require filaforge/system-monitor
```

### 2. Publish &amp; Migrate

[](#2-publish--migrate)

```
# Publish provider groups (config, views, migrations)
php artisan vendor:publish --provider="Filaforge\\SystemMonitor\\Providers\\SystemMonitorServiceProvider"

# Run migrations
php artisan migrate
```

### 3. Register Plugin

[](#3-register-plugin)

Add the plugin to your Filament panel provider:

```
use Filament\Panel;

public function panel(Panel $panel): Panel
{
    return $panel
        // ... other configuration
        ->plugin(\Filaforge\SystemMonitor\SystemMonitorPlugin::make());
}
```

Setup
-----

[](#setup)

### Prerequisites

[](#prerequisites)

Before using this plugin, ensure your system meets these requirements:

- **PHP Extensions**: Required extensions for system monitoring
- **System Permissions**: Appropriate permissions for system access
- **Storage**: Sufficient storage for metrics and logs

### Configuration

[](#configuration)

The plugin will automatically:

- Publish configuration files to `config/system-monitor.php`
- Publish view files to `resources/views/vendor/system-monitor/`
- Publish migration files to `database/migrations/`
- Register necessary routes and middleware

### Monitor Configuration

[](#monitor-configuration)

Configure the system monitor in the published config file:

```
// config/system-monitor.php
return [
    'enabled' => env('SYSTEM_MONITOR_ENABLED', true),
    'update_interval' => env('SYSTEM_MONITOR_UPDATE_INTERVAL', 30),
    'retention_days' => env('SYSTEM_MONITOR_RETENTION_DAYS', 30),
    'metrics' => [
        'cpu' => true,
        'memory' => true,
        'disk' => true,
        'network' => true,
        'processes' => true,
        'services' => true,
    ],
    'alerts' => [
        'cpu_threshold' => env('SYSTEM_MONITOR_CPU_THRESHOLD', 80),
        'memory_threshold' => env('SYSTEM_MONITOR_MEMORY_THRESHOLD', 85),
        'disk_threshold' => env('SYSTEM_MONITOR_DISK_THRESHOLD', 90),
    ],
    'dashboard_widgets' => [
        'system_status' => true,
        'resource_usage' => true,
        'process_list' => true,
        'service_status' => true,
    ],
];
```

### Environment Variables

[](#environment-variables)

Add these to your `.env` file:

```
SYSTEM_MONITOR_ENABLED=true
SYSTEM_MONITOR_UPDATE_INTERVAL=30
SYSTEM_MONITOR_RETENTION_DAYS=30
SYSTEM_MONITOR_CPU_THRESHOLD=80
SYSTEM_MONITOR_MEMORY_THRESHOLD=85
SYSTEM_MONITOR_DISK_THRESHOLD=90
```

Usage
-----

[](#usage)

### Accessing the System Monitor

[](#accessing-the-system-monitor)

1. Navigate to your Filament admin panel
2. Look for the "System Monitor" menu item
3. View system metrics and performance data

### Dashboard Widgets

[](#dashboard-widgets)

The plugin provides several dashboard widgets:

- **System Status**: Overall system health and status
- **Resource Usage**: Real-time CPU, memory, and disk usage
- **Process List**: Top processes by resource usage
- **Service Status**: System services and their status

### Monitoring Features

[](#monitoring-features)

1. **System Overview**: Get a quick overview of system health
2. **Resource Monitoring**: Track CPU, memory, disk, and network usage
3. **Process Management**: View and manage running processes
4. **Service Monitoring**: Monitor system services and their health
5. **Performance Trends**: Analyze performance over time
6. **Alert Configuration**: Set up alerts for critical thresholds

### Advanced Features

[](#advanced-features)

- **Custom Metrics**: Add custom monitoring metrics
- **Multi-server Monitoring**: Monitor multiple servers
- **Performance Analysis**: Analyze performance trends and patterns
- **Capacity Planning**: Use historical data for capacity planning

Troubleshooting
---------------

[](#troubleshooting)

### Common Issues

[](#common-issues)

- **Permission denied**: Ensure the user has appropriate system access
- **Metrics not updating**: Check update interval and cron jobs
- **High resource usage**: Monitor the monitor itself for performance impact
- **Missing data**: Verify data retention settings and storage

### Debug Steps

[](#debug-steps)

1. Check the plugin configuration:

```
php artisan config:show system-monitor
```

2. Verify routes are registered:

```
php artisan route:list | grep system-monitor
```

3. Check system permissions:

```
# Verify the web server user has system access
whoami
groups
```

4. Test system monitoring:

```
# Test if basic system commands work
php artisan tinker
shell_exec('top -bn1 | head -20');
```

5. Clear caches:

```
php artisan optimize:clear
```

6. Check logs for errors:

```
tail -f storage/logs/laravel.log
```

### Performance Optimization

[](#performance-optimization)

- **Update intervals**: Adjust monitoring frequency based on needs
- **Data retention**: Configure appropriate data retention periods
- **Resource usage**: Monitor the monitoring system itself
- **Caching**: Implement caching for frequently accessed metrics

Security Considerations
-----------------------

[](#security-considerations)

### Access Control

[](#access-control)

- **Role-based permissions**: Restrict monitor access to authorized users only
- **System access**: Limit system access to necessary monitoring functions
- **Data privacy**: Ensure sensitive system information is protected
- **Audit logging**: Track all monitoring activities

### Best Practices

[](#best-practices)

- Never expose system monitoring to public users
- Regularly review and update access permissions
- Monitor the monitoring system for security issues
- Implement proper user authentication and authorization
- Use HTTPS for secure access
- Regular security audits of monitoring access

Performance Optimization
------------------------

[](#performance-optimization-1)

### System Requirements

[](#system-requirements)

- **CPU**: Minimal CPU overhead for monitoring
- **Memory**: Sufficient RAM for metrics storage
- **Storage**: Fast storage for metrics and logs
- **Network**: Stable network for multi-server monitoring

### Optimization Tips

[](#optimization-tips)

- Use appropriate update intervals
- Implement data retention policies
- Monitor monitoring system performance
- Use caching for frequently accessed data

Uninstall
---------

[](#uninstall)

### 1. Remove Plugin Registration

[](#1-remove-plugin-registration)

Remove the plugin from your panel provider:

```
// remove ->plugin(\Filaforge\SystemMonitor\SystemMonitorPlugin::make())
```

### 2. Roll Back Migrations (Optional)

[](#2-roll-back-migrations-optional)

```
php artisan migrate:rollback
# or roll back specific published files if needed
```

### 3. Remove Published Assets (Optional)

[](#3-remove-published-assets-optional)

```
rm -f config/system-monitor.php
rm -rf resources/views/vendor/system-monitor
```

### 4. Remove Package and Clear Caches

[](#4-remove-package-and-clear-caches)

```
composer remove filaforge/system-monitor
php artisan optimize:clear
```

### 5. Clean Up Environment Variables

[](#5-clean-up-environment-variables)

Remove these from your `.env` file:

```
SYSTEM_MONITOR_ENABLED=true
SYSTEM_MONITOR_UPDATE_INTERVAL=30
SYSTEM_MONITOR_RETENTION_DAYS=30
SYSTEM_MONITOR_CPU_THRESHOLD=80
SYSTEM_MONITOR_MEMORY_THRESHOLD=85
SYSTEM_MONITOR_DISK_THRESHOLD=90
```

### 6. Clean Up Monitoring Data

[](#6-clean-up-monitoring-data)

After uninstalling, consider:

- Removing stored metrics and logs
- Cleaning up any cron jobs or scheduled tasks
- Removing any custom monitoring configurations
- Updating system access permissions

Support
-------

[](#support)

- **Documentation**: [GitHub Repository](https://github.com/filaforge/system-monitor)
- **Issues**: [GitHub Issues](https://github.com/filaforge/system-monitor/issues)
- **Discussions**: [GitHub Discussions](https://github.com/filaforge/system-monitor/discussions)

Contributing
------------

[](#contributing)

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.

License
-------

[](#license)

This plugin is open-sourced software licensed under the [MIT license](LICENSE).

---

**Made with ❤️ by the Filaforge Team**

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance58

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

266d ago

Major Versions

0.1.2 → v1.0.02025-08-19

### Community

Maintainers

![](https://www.gravatar.com/avatar/e7ccd0e302c517e0c6bc2b4ef05008e5beb1621bf5a64b17b82cdceb19566389?d=identicon)[filaforge](/maintainers/filaforge)

---

Top Contributors

[![blhk0532](https://avatars.githubusercontent.com/u/221689993?v=4)](https://github.com/blhk0532 "blhk0532 (5 commits)")

---

Tags

laravelplatformfilament

### Embed Badge

![Health badge](/badges/filaforge-filament-system-monitor/health.svg)

```
[![Health](https://phpackages.com/badges/filaforge-filament-system-monitor/health.svg)](https://phpackages.com/packages/filaforge-filament-system-monitor)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
