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 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
  • Create tests
  • 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.3.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: django_command_monitor-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 dc5821109635ba8977a0810caa904fa19c327a41918d37601a555c2c45a151bb
MD5 55d5f2b44b57adc0c44750c6f6724f25
BLAKE2b-256 994331628a813d36d02b12a05c1f0fffa4056fe4fc3cccca8ee3ff37844acbb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_command_monitor-0.1.3-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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 bce32d77372fe59d5bbc3bf2ed4e68f509037e4397b600b7b3d3d7e073048dbb
MD5 d8609a4d47b0ded08bc1fd4b601de8ab
BLAKE2b-256 9c52697201ce8692c902a2e6fd0ebc52589569498c0ddb81e2e0ada377ebb04a

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