Skip to main content

A simple logging library with JSON log formatting

Project description

Logtron

Release Downloads Supported Versions License

Build Coverage Documentation Maintainability Tech Debt Issues

Logtron is a simple logging library with JSON log formatting.

>>> import logtron
>>> logger = logtron.autodiscover()
>>> logger.info("hello world")
{"timestamp": 1598900664859, "message": "hello world", "name": "root", "level": 20, "context": {}, "extra": {}}
>>> logger.info("extra args", extra={"foo": "bar", "count": 7})
{"timestamp": 1598900667704, "message": "extra args", "name": "root", "level": 20, "context": {}, "extra": {"foo": "bar", "count": 7}}
>>>

Or

>>> import logtron
>>> logtron.autodiscover() # Only needs to run once somewhere to configure the root logger
<RootLogger root (INFO)>
>>>
>>> import logging
>>> logger = logging.getLogger()
>>> logger.info("hello world")
{"timestamp": 1598900735699, "message": "hello world", "name": "root", "level": 20, "context": {}, "extra": {}}
>>> logger.info("extra args", extra={"foo": "bar", "count": 7})
{"timestamp": 1598900757238, "message": "extra args", "name": "root", "level": 20, "context": {}, "extra": {"foo": "bar", "count": 7}}
>>>

Logtron allows you to skip all the usual boilerplate when configuring python logging.

Logtron will default to a console JSON log formatter that is compatible with popular log aggregators such as Logstash, Fluent Bit, or AWS CloudWatch Logs.

Installing Logtron and Supported Versions

Logtron is available on PyPI:

$ python -m pip install logtron

Logtron officially supports Python 2.7 & 3.5+.

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

logtron-0.1.9.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

logtron-0.1.9-py2.py3-none-any.whl (10.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file logtron-0.1.9.tar.gz.

File metadata

  • Download URL: logtron-0.1.9.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.0 Linux/4.15.0-1077-gcp

File hashes

Hashes for logtron-0.1.9.tar.gz
Algorithm Hash digest
SHA256 d5abcecb51e1af9e8293c0b6bc7bf538855a4561c7848ba9ec3bf78286fbe0c7
MD5 b60325a9de1794bbf2522648bdf9b7ee
BLAKE2b-256 b45f5932aa1d801acd2b827bf4fcf69dd589486233a16106aad752fa4c8fe900

See more details on using hashes here.

File details

Details for the file logtron-0.1.9-py2.py3-none-any.whl.

File metadata

  • Download URL: logtron-0.1.9-py2.py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.0 Linux/4.15.0-1077-gcp

File hashes

Hashes for logtron-0.1.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 c187332ba995055c9706321531834c31b23f483aa6b90626aba1dd7b7a1aaba2
MD5 910323c81555949cd4ce9b5a04a2a88c
BLAKE2b-256 032ee23596d5a30b8d35005c1b2c2c78e557307b4c6de07e9a25efb0efe647a0

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