Simple django app to expose system infos: libraries version, databae server infos...
Project description
django-sysinfo
Simple django app to expose system infos like libraries version, database server.
Easy to extend to add custom checks.
Features
dump system informations
check API to add custom checks
simple echo
retrieve library version
Quickstart
Install django-sysinfo:
pip install django-sysinfo
put it in your INSTALLED_APPS:
INSTALLED_APPS=[... 'django_sysinfo' ]
add relevant entries in your url.conf:
urlpatterns = ( .... url(r'', include(django_sysinfo.urls)), )
or customize them:
from django_sysinfo.views import http_basic_login, sysinfo urlpatterns = ( url('sys/info/$', http_basic_login(sysinfo), name='sys-info'), url('sys/version/(?P<name>.*)/$', version, name='sys-version') )
Known issues and limitations
There are some limitations in the metrics returned by sysinfo, anyway this package is not intended to be used as host/resources monitoring tool.
Disk space returns device info, any soft limits are ignored
Memory can be wrong in some virtual environments
Links
Stable |
|||||
Development |
|||||
Project home page: |
|||||
Issue tracker: |
|||||
Download: |
|||||
Documentation: |
History
1.2 16 Aug 2017
fixex python 3.6 compatibility
new config ‘_ttl’ to set cache max_age attribute
1.1 14 Jul 2017
Django 1.11 compatibility
handle broken database connections
add new mail server informations
new ‘checks’ API
BACKWARD INCONPATIBLE: new config format
1.0 (15 Mar 2017)
fixes error in json serialization
BACKWARD INCOMPATIBLE: by default all the sections are disabled
allow both string and callable in extra section
added new configuration parameters
new management command
0.3 (27 Mar 2016)
dropped support Django<1.6
add settings.SYSINFO_USERS to manage access
default Basic Authentication protected urls
removed ‘sys’ prefix from default urlpatterns
new ‘echo’ endpoint
0.2 (13 Feb 2016)
add some infos
output sorted to improve readibility
add ability to filter sections (?s=os,python)
add CACHES infos
removed command line utility
0.1.1 (20 Jan 2016)
improved coverage
fixes typos in copyright
0.1.0 (15 Jan 2015)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file django_sysinfo-1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: django_sysinfo-1.2-py2.py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e9f864f32c8faa2137c37a06f73b782948797c0332d91f7bc5b8ad25954181f |
|
MD5 | 7fd58fd81564286a99ded6ee7b85eef2 |
|
BLAKE2b-256 | 098ed1a7168fd02619a22e6adfef0ea7f93ef2bee1fe35b1cfef9f0b1adf77f6 |