Metadata-Version: 1.1
Name: django_monitor_psutil
Version: 0.0.1
Summary: Monitor exposes a JSON endpoint to your system to check on system information
Home-page: https://github.com/emman27/djangomonitor
Author: Emmanuel Goh
Author-email: emmanuel.goh.7@gmail.com
License: MIT License
Description-Content-Type: UNKNOWN
Description: =====
        Monitor
        =====
        
        Monitor exposes a JSON endpoint to your system to check on system information
        
        
        Quick start
        -----------
        
        1. Add "monitor" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'monitor',
            ]
        
        2. Include the monitor URLconf in your project urls.py like this::
        
            url(r'^stats/', include('monitor.urls')),
        
        4. Start the development server and GET http://127.0.0.1:8000/stats/
           to get the JSON (You may want to enable CORS, if consuming directly from a browser).
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
