Skip to main content

Parse nginx logs.

Project description

Python nginx Log Parser

Parse nginx logs with Python.

https://img.shields.io/pypi/v/nginxlib.svg https://img.shields.io/travis/briandant/nginxlib.svg Documentation Status
  • Free software: MIT license

<! – Docs not yet published * Documentation: https://nginxlib.readthedocs.io. –>

This package parses nginx logs and provides a Python object representing each log. It also has some procedures to aggregate log data.

Installation

With pip:

$ pip install nginxlib

For development:

$ python setup.py develop

Run the tests:

$ make test

Features

  • Parse a discrete nginx log entry to a Python object

  • Aggregate log data

Usage

Given this nginx log entry:

` 96.49.212.83 - - [16/Jun/2019:22:52:21 +0000] "GET /vs/editor/editor.main.nls.js HTTP/1.1" 200 34027 "https://3000-98358490.staging-avl.appsembler.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:67.0) Gecko/20100101 Firefox/67.0" "-" # noqa E503 `

the entryparse object will behave as follows:

>>> from nginxparser import entryparse

>>> entry = entryparse(log_string)
>>> entry.timestamp
datetime.datetime(2019, 6, 16, 23, 54, 5, 624139)
>>> entry.url
ParseResult(scheme='https', netloc='3000-98358490.staging-avl.appsembler.com', path='', params='', query='', fragment='')
>>> entry.deploy_id
'98358490'

Credits

History

0.1.0-alpha (2019-06-17)

  • First release on PyPI.

  • Port the original repo

  • Add procedures to parse discrete logs

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

nginxlib-0.1.0a0.tar.gz (12.4 kB view hashes)

Uploaded Source

Built Distribution

nginxlib-0.1.0a0-py2.py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 2 Python 3

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