Skip to main content

A toolset for monitoring django commands through FireBase.

Project description

Django Command Monitoring

Description

Django Command Monitoring is a tool that logs the progress of django commands. It writes the progress into FireBase where you can then read and do whatever you want with the data.

Currently supports:

  • Django>=1.11
  • Python 2 & 3

How to install

Package installation

Use

  • pip install django-command-monitor
  • pip install git+https://github.com/siakon89/django-command-monitoring.git

Set up environment

In your django settings file you have to include your FireBase credentials and the FireBase folder that identifies your project.

For your FireBase credentials:

FIREBASE_MONITORING = {
    'API_KEY': '<your FireBase API key>',
    'DOMAIN': '<your FireBase domain>',
    'NAME': '<your FireBase name>',
    'PROJECT_ID': '<your FireBase project id>',
    'SENDER_ID': '<your FireBase sender id>'
}

For your FireBase folder:

FIREBASE_TABLE = 'monitor-myapp-production'

How to run with django-command-monitoring

When you are done setting up the only thing you have to do is to include the tool and use MonitoredCommand class instead of Django's BaseCommand

from django_command_monitor import monitor

class Command(monitor.MonitoredCommand):
...

To disable the command monitoring feature for development runs you can include the input --disable_monitor

After installation

Your data in FireBase will look like this:

{"monitor-myapp-production":{
           "commands":{
                "<the name of your command with arguments>":{
                        "log":[{
                                      "finished": "<DATETIME>",
                                      "id": "<COMMAND ID>",
                                      "latest": "<DATETIME>",
                                      "message": "<MESSAGE>",
                                      "name": "<COMMAND NAME>",
                                      "params": "<PARAMETERS>",
                                      "started": "<DATETIME>",
                                      "status": "<STATUS>",
                                      "exception_type": "<EXCEPTION AS STRING>"
                                },
                                {...},
                                ...   
                        ]
                },
                "<another command>":{...}
           },
  },
}

First of all the name of the FireBase table is the same as the one in settings FIREBASE_TABLE. Under the key commands all the commands that have ran under the monitor.MonitoredCommand are listed there.

Each command is identified by its name along side with its parameters i.e. when running python manage.py test_command --verbosity=2 the command name is transformed to test_command__verbosity_2.

Under each command there is the key log that contains a list of all runs of this command with the respective details

For each log it keeps the following data:

  • id: the identifier of the command(for now is the same as the key of the command mentioned above)
  • name : The name of the command i.e. when running python manage.py test_command --verbossity=2 the name is test_command
  • status: the status of the command
    • STARTED : The command has just started
    • RUNNING : The command currently running
    • FINISHED : The command has naturally finished
    • FAILED : There was an error when running the command. message holds the error message and exception_type holds the type of the exception
    • SYSTEM_KILL: The command is killed by the system i.e. Heroku restarts the dyno based on the given interval. This status is assigned when the same command starts a new cycle and the previous log has status RUNNING, meaning the command is forced to stop before writing to FireBase
  • started : The datetime of when the process started
  • finished: The datetime of when the process finished. If the process is not yet finished the value is None
  • latest: The datetime of the latest ping. The process is running under a thread where it pings to FireBase under a time interval
  • message: The message of the failed command
  • exception_type : The type of the exception when the command failed
  • params: The parameters of the command i.e. python manage.py test_command --verbosity=2 goes to verbosity=2. Multiple parameters are comma separated

Finally the <DATETIME> format is as follows: YYYY-MM-DDTHH:MM:SS.(float)Z

TODO

  • Handle the timeouts on FireBase, with at least 3 times retry
  • Add support for other command classes other than BaseCommand

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

django_command_monitor-0.1.4.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

django_command_monitor-0.1.4-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file django_command_monitor-0.1.4.tar.gz.

File metadata

  • Download URL: django_command_monitor-0.1.4.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.3.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.5

File hashes

Hashes for django_command_monitor-0.1.4.tar.gz
Algorithm Hash digest
SHA256 955b1786a938afad18a94cbb1e6e0c6213b06fd11a7b69bc258cc93569a93440
MD5 047502dbd556998292c1b406c36eb599
BLAKE2b-256 912cb4cd15ed5c5727ddc94452d10aa8f790026c8b4a6b468d6f9d49248ac3a5

See more details on using hashes here.

File details

Details for the file django_command_monitor-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: django_command_monitor-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.3.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.5

File hashes

Hashes for django_command_monitor-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 48e1458f3915b916fcbff71c9df403eb842a2ba50f1f4d4d3abc611a8e16007b
MD5 321a3af4ac40a18a69b9c439f3728fd2
BLAKE2b-256 018a3522a45780a77babb35999de15cf1ed391e8c783dedcb95384e5fcae164a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page