New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

logging-gelf

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logging-gelf

Logging bundle to send logs using GELF

  • 0.0.32
  • PyPI
  • Socket score

Maintainers
2

Logging GELF


.. image:: https://img.shields.io/pypi/v/logging-gelf.svg :target: https://pypi.python.org/pypi/logging-gelf/ :alt: Latest Version

.. image:: https://github.com/ovh/python-logging-gelf/actions/workflows/test.yml/badge.svg :target: https://github.com/ovh/python-logging-gelf/actions/workflows/test.yml :alt: Build Status

.. image:: https://readthedocs.org/projects/logging-gelf/badge/?version=latest :target: http://logging-gelf.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

A python logging bundle to send logs using GELF. This is a rewrote of Djehouty <https://github.com/ovh/djehouty>_

Quickstart

First, install logging-gelf using pip <https://pip.pypa.io/en/stable/>_::

pip install -U logging-gelf

The following example shows how to send log in Graylog TCP input

.. code-block:: python

import logging
from logging_gelf.formatters import GELFFormatter
from logging_gelf.handlers import GELFTCPSocketHandler

logger = logging.getLogger("gelf")
logger.setLevel(logging.DEBUG)

handler = GELFTCPSocketHandler(host="127.0.0.1", port=12201)
handler.setFormatter(GELFFormatter(null_character=True))
logger.addHandler(handler)
logger.debug("hello !")

Documentation

Logging adapter, extra, custom schema and many other stuff are available in the full documentation available at http://logging-gelf.readthedocs.io/ .

Requirements

  • Python >= 3.3

License

Licensed under BSD 3-Clause License <./LICENSE>_ or https://opensource.org/licenses/BSD-3-Clause.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc