Skip to main content

Python logging logstash handler

Project description

sag_py_logging_logstash

Maintainability Coverage Status Known Vulnerabilities

Python Logstash Async is an asynchronous Python logging handler to submit log events to a remote Logstash instance. It based on open source library, see the documentation http://python-logstash-async.readthedocs.io/en/latest/. In this version transporter is limited to HTTPTransport, according to Logstash intern installation requirements.

Unlike most other Python Logstash logging handlers, this package works asynchronously by collecting log events from Python's logging subsystem and then transmitting the collected events in a separate worker thread to Logstash. This way, the main application (or thread) where the log event occurred, doesn't need to wait until the submission to the remote Logstash instance succeeded.

This is especially useful for applications like websites or web services or any kind of request serving API where response times matter.

Usage

Example::

from logstash_async.handler import AsynchronousLogstashHandler
from logstash_async.formatter import LogstashFormatter
import logging

logstash_handler = AsynchronousLogstashHandler(
    host='my_host',
    port=123,
    username='my_user',
    password='my_password',
    index_name = 'my_index')
logstash_formatter = LogstashFormatter( extra_prefix='',
extra={'customer': "name", 'ap_environment': "local"})
logstash_handler.setFormatter(logstash_formatter)

logging_handlers = []
logging_handlers.append(logstash_handler)

logging.basicConfig(
level="INFO",
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=logging_handlers)

logging.getLogger().info("Logging Message", extra = {'new_field':"value"})

Installation

pip install sag-py-logging-logstash

How to start developing

With vscode

Just install vscode with dev containers extension. All required extensions and configurations are prepared automatically.

With pycharm

  • Install latest pycharm
  • Configure the python interpreter/venv
  • pip install requirements-dev.txt
  • Restart pycharm

How to publish

  • Update the version in setup.py and commit your change
  • Create a tag with the same version number
  • Let github do the rest

How to test

To avoid publishing to pypi unnecessarily you can do as follows

  • Tag your branch however you like
  • Use the chosen tag in the requirements.txt-file of the project you want to test this library in, eg. sag_py_logging_logstash==<your tag>
  • Rebuild/redeploy your project

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

sag_py_logging_logstash-3.0.6.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sag_py_logging_logstash-3.0.6-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file sag_py_logging_logstash-3.0.6.tar.gz.

File metadata

  • Download URL: sag_py_logging_logstash-3.0.6.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sag_py_logging_logstash-3.0.6.tar.gz
Algorithm Hash digest
SHA256 63624a4bd6c293d4a6c6433768b17b33a2c888b4630854b4ac974b116d054733
MD5 5b9deede436d0d9553a89129d421d72e
BLAKE2b-256 1389579f355cb12373ae0f4f5617c14d8f22a1f4a1669b9fed732699557c15bd

See more details on using hashes here.

File details

Details for the file sag_py_logging_logstash-3.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for sag_py_logging_logstash-3.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 726d04da1b62d0305ccc2b2280b9cf3c6452055188c556dd1c4998093141a699
MD5 fcac71d4714905de9061c5d1c4b7d724
BLAKE2b-256 6ecf1217cc83e5837131aca39162f117831c94b3f02626bf6c36782f378d65f5

See more details on using hashes here.

Supported by

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