Simple django app to expose system infos: libraries version, databae server infos...
Project description
Simple django app to expose system infos like libraries version, database server.
Easy to extend to add custom checks.
Features
dump system informations
admin integration
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: |
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 Distribution
File details
Details for the file django-sysinfo-2.5.1.tar.gz
.
File metadata
- Download URL: django-sysinfo-2.5.1.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 importlib_metadata/4.3.0 pkginfo/1.5.0.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf904b57cdc436ede0c7349c206703005312564b8dc6c4a14eaa35564a916b41 |
|
MD5 | b3e2f6409e3428c2f9769d5952d446f1 |
|
BLAKE2b-256 | a5b4a1f1a650d31d4ba82cb16e51013d5086476d6ff81c4365fa701667cd49b3 |