Skip to main content

A log viewing and tailing utility accessible via a Django admin panel

Project description

==============
django_logtail
==============

Introduction
============

Logtail allows you to view logfiles for your django project via your django
admin, and will also provide you with a live tail of the logfiles using ajax
polling - and therefore without the need for a long-running django process.

See Also: https://pypi-hypernode.com/pypi/django_logtail

Installation and Use
====================

Django logtail takes a dictionary from your settings.py as follows::

LOGTAIL_FILES = {
'apache': '/var/www/www.foo.com.log',
'django', '/var/log/www.foo.com/project.log',
}

Add it via your installed apps::

INSTALLED_APPS = (
...
'django_logtail',
)

If any of your django admin plugin apps already add a jquery header::

LOGTAIL_INCLUDE_JQUERY = False # Default is True

Next hook it into your root_urlconf, above the bog-standard admin urls::

urlpatterns = patterns('',
# First this
url(r'^admin/django_logtail/', include(logtail_urls)),

# Then this
url(r'^admin/', include(admin.site.urls)),
...
)

Then absolutely ensure that the user that your django process runs as (whether
it's via wsgi, fastcgi, django runserver for debugging, or something else) has
permission to read all of the files in your LOGTAIL_FILES list.

logtail should then appear in your admin, and provide access to these files -
including a live tail of the file.

Simples.

Other Settings
==============

You can set the default update interval for the log tailing::

LOGTAIL_UPDATE_INTERVAL = 50000 # Default is 1000 (one second)


============================
Changelog for django_logtail
============================

0.0.1 (2012-04-22)
------------------

- Update the package MANIFEST.in to ensure that the README and changelog are
included.


0.0.0 (2012-04-22)
------------------

- Initial release.

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_logtail-0.0.1.tar.gz (5.1 kB view details)

Uploaded Source

File details

Details for the file django_logtail-0.0.1.tar.gz.

File metadata

File hashes

Hashes for django_logtail-0.0.1.tar.gz
Algorithm Hash digest
SHA256 0c913f0928ce87fdde3fc5b0878d9eb8468327988f06caf66e983271d9de71d2
MD5 1a7491f45c6f31613cb9a5fd91e00cff
BLAKE2b-256 f8d645d2e3a38e9f51424eb920098607fe09769bc0530c35925ad88176c741d6

See more details on using hashes here.

Provenance

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