A Django-based dashboard application for monitoring system resource utilization using the psutil
library.
- Real-time monitoring of CPU usage, memory usage, disk usage, and network statistics.
- Easy integration with existing Django projects.
- Pip install the package:
pip install django-psutil-dash
- Add
django_psutil_dash
to yourINSTALLED_APPS
setting:
INSTALLED_APPS = [
...
'django_psutil_dash',
]
- Add the following URL pattern to your project's URL configuration:
from django_psutil_dash.urls import psutil_urlpatterns
urlpatterns = [
...
path('psutil/', psutil_urlpatterns()),
]
- Run the Django development server:
python manage.py runserver
- Navigate to
http://localhost:8000/psutil/
to view the dashboard.
Contributions are welcome! If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for more information.