django-skwissh

SSH monitoring application
Download

django-skwissh Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL
  • Price:
  • FREE
  • Publisher Name:
  • Roland Saikali
  • Publisher web site:
  • https://github.com/rsaikali/

django-skwissh Tags


django-skwissh Description

django-skwissh is a Django app for remotely monitoring servers using SSH.In background (crontabed jobs) Skwissh uses Python Fabric to execute SSH commands, aka. "sensors", get the output and store timestamped values. Measures are taken every minute.On the other side, Skwissh is able to display nice charts (linechart, piechart or simple text) with aggregated measures.Default sensors available (tested on Ubuntu 12.04) :- Memory- CPU- WaitIO- Load Averages- Disk usage- TopBut you can easily add your own ones !!Follow @skwissh on Twitter to see latest updates.InstallationSkwissh can be installed from Pypi:pip install django-skwisshConfigure your Django project in a normal way (database, etc...).Add skwissh and kronos to your Django INSTALLED_APPS:INSTALLED_APPS = ( ... 'kronos', 'skwissh',)Add Skwissh to your urls.py:# Skwisshurl(r'^skwissh/', include('skwissh.urls')),Synchronize your database (this command will load defaut sensors through fixtures):./manage.py syncdbInstall Skwissh tasks (will write to your user crontab, thanks to 'django-kronos'):./manage.py installtasksYou can check that 4 crontab job have been configured:crontab -lIf you want to activate i18n (French & English currently supported), follow the next steps:In your project settings.py, add the Django LocaleMiddleware and set the LANGUAGES variable:MIDDLEWARE_CLASSES = ( ... 'django.middleware.locale.LocaleMiddleware', ...)LANGUAGES = ( ('fr', 'Français'), ('en', 'English'),)You're ready to go! Connect to the application and start configure your servers and sensors!Product's homepage


django-skwissh Related Software