A reusable Django app, that fetches and visualizes server health metrics.
Project description
A reusable Django app, that fetches and visualizes server health metrics.
The data is fetched from the API app, that is installed on the client server.
Installation
To get the latest stable release from PyPi
pip install django-server-guardian
To get the latest commit from GitHub
pip install -e git+git://github.com/bitmazk/django-server-guardian.git#egg=server_guardian
TODO: Describe further installation steps (edit / remove the examples below):
Add server_guardian to your INSTALLED_APPS
INSTALLED_APPS = (
...,
'server_guardian',
)
Add the server_guardian URLs to your urls.py
urlpatterns = patterns('',
...
url(r'^server-guardian/', include('server_guardian.urls')),
)
Don’t forget to migrate your database
./manage.py migrate server_guardian
For simple color highlighting of the server status, you can include the following line to your template:
<link href="{% static "server_guardian/css/styles.css" %}" rel="stylesheet">
Usage
Once you’ve installed the API app on the client server and added some endpoitns to your settings, as described there, you can go ahead and configure your servers.
Visit the Django admin for the server guardian, create a new Server object and fill out the fields.
- API URL:
This is the url, the API app is hooked in under on the client server.
- Server name:
You can simply name the server.
- Token:
You will need to create a token string, that you’ll add here and on the remote server.
The other fields are not to be edited and they will be overwritten every time the guardian fetches new data.
Finally you should schedule the management command guardian_fetch to run as often as you wish to update your server status (e.g. with cron).
Visit /server-guardian/ for health status overview.
Settings
There are a few settings, you can work with.
DJANGO_PROJECT_ROOT (mandatory!)
It’s likely, that you already have this setting. If not, please set it to the directory where your manage.py file is located.
SERVER_GUARDIAN_EMAIL_ON_STATUS
Sets on which HTML status codes to send an email to the admins.
Default: SERVER_GUARDIAN_EMAIL_ON_STATUS = [403, 404, 405]
SERVER_GUARDIAN_DASHBOARD_VIEW_PERMISSION
This setting gets a function assigned, that is passed to the user_passes_test decorator in the dashboard view.
Default: SERVER_GUARDIAN_DASHBOARD_VIEW_PERMISSION = lambda u: u.is_superuser
Contribute
If you want to contribute to this project, please perform the following steps
# Fork this repository
# Clone your fork
mkvirtualenv -p python2.7 django-server-guardian
make develop
git co -b feature_branch master
# Implement your feature and tests
git add . && git commit
git push -u origin feature_branch
# Send us a pull request for your feature branch
In order to run the tests, simply execute tox. This will install two new environments (for Django 1.6 and Django 1.7) and run the tests against both environments.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for django-server-guardian-0.3.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f8f6306f444b91940b69546dbfe13fb0b9f6bbb8034637b028af399ea0a5e42 |
|
MD5 | 58f607227ae7b023c743cdc76f80d7fe |
|
BLAKE2b-256 | 160531c066cdbde6b892d94eff46f018dbb8f85d083adcccc28242c9607e1cfb |