Skip to main content

HTTP queries logger with flexible filters.

Project description

This django app intended for writing HTTP log to database and/or watch last user activity.

Features:

  • DB router for writing logs to another database.
  • Filters for ignoring some queries by URL, HTTP methods and response codes.
  • Saving anonymous activity as fake user.
  • Autocreation log DB (for postgresql)

Install:

$ pip install django-user-activity-log2

settings.py:

INSTALLED_APPS = (
    ...
    'activity_log',
)

MIDDLEWARE_CLASSES = (
    ...
    'activity_log.middleware.ActivityLogMiddleware',
)

# For writing log to another DB

DATABASE_ROUTERS = ['activity_log.router.DatabaseAppsRouter']
DATABASE_APPS_MAPPING = {'activity_log': 'logs'}

# If you set up DATABASE_APPS_MAPPING, but don't set related value in
# DATABASES, it will created automatically using "default" DB settings
# as example.
DATABASES = {
    'logs': {
        ...
    },
}

# Create DB automatically (for postgres, and may be mysql).
# We create log database automatically using raw SQL in pre_migrate signal.
# You must insure, that DB user has permissions for creation databases. 
# Tested only for postgresql
ACTIVITYLOG_AUTOCREATE_DB = False

# App settings

# Log anonymous actions?
ACTIVITYLOG_ANONYMOUS = True

# Update last activity datetime in user profile. Needs updates for user model.
ACTIVITYLOG_LAST_ACTIVITY = True

# Only this methods will be logged
ACTIVITYLOG_METHODS = ('POST', 'GET')

# List of response statuses, which logged. By default - all logged.
# Don't use with ACTIVITYLOG_EXCLUDE_STATUSES
ACTIVITYLOG_STATUSES = (200, )

# List of response statuses, which ignores. Don't use with ACTIVITYLOG_STATUSES
# ACTIVITYLOG_EXCLUDE_STATUSES = (302, )

# URL substrings, which ignores
ACTIVITYLOG_EXCLUDE_URLS = ('/admin/activity_log/activitylog', )

account/models.py:

from django.contrib.auth.models import AbstractUser
from activity_log.models import UserMixin

# Only for LAST_ACTIVITY = True
class User(AbstractUser, UserMixin):
    pass

$ python manage.py migrate & python manage.py migrate --database=logs

If you use ACTIVITYLOG_AUTOCREATE_DB migrations to logs database will be run automatically.

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-user-activity-log2-0.0.25.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

django_user_activity_log2-0.0.25-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file django-user-activity-log2-0.0.25.tar.gz.

File metadata

File hashes

Hashes for django-user-activity-log2-0.0.25.tar.gz
Algorithm Hash digest
SHA256 ce3ac0659a1efdf9d3b3c592454ee3dd31304cc92ebdb67c021dcdd3d9d6de15
MD5 6583f765c98d32fe229523fb3d87acb8
BLAKE2b-256 2e2e910d43e8588581a62d6b061b2642132503acafcb33143b96abab218adb32

See more details on using hashes here.

File details

Details for the file django_user_activity_log2-0.0.25-py3-none-any.whl.

File metadata

File hashes

Hashes for django_user_activity_log2-0.0.25-py3-none-any.whl
Algorithm Hash digest
SHA256 b07681b9ffc6e7e5658f57a0d43e0b92151a862b8bfa994e95f2258b458c2f94
MD5 d80862b999e2503a1f3b322adc380ba7
BLAKE2b-256 29467d8a5828ed87c98b7df37a89cf9ec4c00e531e4e70a636371104a8a594b6

See more details on using hashes here.

Supported by

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