Skip to main content

The complex logging system.

Project description

Loggate

The complex logging system with support of log metadata and delivery to Grafana Loki.

Simple stdout/stderr colorized output

One example is more than a thousand words.

from loggate import setup_logging, get_logger

setup_logging(level='DEBUG')
logger = get_logger('component', meta={'version': '1.0.0'})

logger.debug('Loading resources for the component')
logger.info('Initialize of the component')
logger.warning('The component is not ready')
logger.error('The component failed.',
             meta={'inputs': {'A': 1, 'B': 2}})
logger.critical('The component unexpected failed.',
                meta={'attrs': {'A': 1, 'B': 2}})

Console output:

Console output

Exceptions

from loggate import setup_logging, get_logger

setup_logging()
logger = get_logger('component', meta={'version': '1.0.0'})

try:
    raise Exception('Some error')
except Exception as ex:
    logger.error('The component failed.', exc_info=True)

Console output:

Console output

Advanced configuration

The Loggate supports a declarative configuration alike as logging.config. But this support profiles as well. It's mean we can declare many logging profiles and switch between them. Default profile is called default.

We can use yaml file as configuration file (see next):

profiles:
  default:                             
    # Default profile
    filters:
      warning:                          
        # This is a filter for stdout logger, that enable only logs with level lower than WARNING. 
        # For logs with WARNING and higher we use stderr logger. 
        class: loggate.LowerLogLevelFilter
        level: WARNING

    formatters:
      colored:
        # This is stdout/sterr formatter. 
        class: loggate.LogColorFormatter
      loki:
        # This is formatter of loki messages.
        class: loggate.loki.LokiLogFormatter

    handlers:
      stdout:
        # This is a stdout handler
        class: logging.StreamHandler
        stream: ext://sys.stdout
        formatter: colored
        filters:
          - warning
      stderr:
        # This is a stderr handler
        class: logging.StreamHandler
        stream: ext://sys.stderr
        formatter: colored
        level: WARNING        
      loki:
        # This is a loki handler
        class: loggate.loki.LokiQueueHandler        
        formatter: loki
        urls:
          - "http://loki1:3100/loki/api/v1/push"
          - "http://loki2:3100/loki/api/v1/push"
          - "http://loki3:3100/loki/api/v1/push"
        meta:
          # loggate handlers accept metadata as well. Standard logging handlers do not!
          stage: dev
          ip: 192.168.1.10                
                  

    loggers:
        root:          
          level: INFO
          handlers:
            - stdout
            - stderr        
            - loki
        'urllib3.connectionpool': 
          level: WARNING
import yaml
from loggate import setup_logging, get_logger


def get_yaml(filename):
    with open(filename, 'r+') as fd:
        return yaml.safe_load(fd)


schema = get_yaml('test.yaml')
setup_logging(profiles=schema.get('profiles'))

logger = get_logger('component')

logger.debug('Loading resources for the component')
logger.info('Initialize of the component')
logger.warning('The component is not ready')

The console output is the same as above, but now we send logs to Loki as well.

Loki output:

loki output

Configuration description

Methods

  • get_logger

    • name - Return logger for this name. Empty name returns root logger.
    • meta - Metadata (dict), which are sent only by this logger.
  • getLogger - only alias for get_logger

  • setup_logging - init setup of application logging.

    • profiles - Profiles (dict) of logging profiles. When we do not set this parameter, application use predefined profile with log INFO level (this level can be set by parameter level).
    • default_profile - name of the default profile (default: default)
    • level - This is special parameter for situation when application use predefined profile (default INFO).

Filters

Class loggate.LowerLogLevelFilter

This filters out all logs which are higher than level.

  • level - log level

Formatters

Class loggate.LogColorFormatter

Colorized formatter for stdout/stderr.

  • fmt - message format (default: %(LEVEL_COLOR)s%(asctime)s\t [%(levelname)s] %(name)s:%(COLOR_RESET)s %(message)s)
  • datefmt - datetime format (default: %Y-%m-%d %H:%M:%S)
  • style - style of templating (default: %).
  • validate - validate the input format (default: True)
  • INDENTATION_TRACEBACK - default: \t\t\t
  • INDENTATION_METADATA - default: \t\t\t\t
  • COLOR_DEBUG, ..., COLOR_CRITICAL - set color of this levels (e.g. \x1b[1;31m, see more colors).
  • COLOR_METADATA - set color metadata
  • COLOR_TRACEBACK - set color of tracebacks
  • COLOR_... - set custom color

Class loggate.loki.LokiLogFormatter

This is special loki formatter, this converts log records to jsons.

Handlers

Class loggate.loki.LokiQueueHandler

This handler send log records to Loki server.

  • level - This handler sends only log records with log level equal or higher than this (default: all = logging.NOTSET).
  • urls - List of loki entrypoints.
  • strategy - Deploy strategy (default: random).
    • random - At the beginning the handler choose random Loki server and others are fallbacks.
    • fallbacks - The handler uses the first Loki server and others are fallbacks.
    • all - The handler send the log record to all loki servers.
  • auth - The Loki authentication, the list with two items (username, password).
  • timeout - Timeout for one delivery try (default: 5s).
  • ssl_verify - Enable ssl verify (default: True).
  • loki_tags - the list of metadata keys, which are sent to Loki server as label (defailt: [logger, level]).
  • meta - Metadata (dict), which are sent only by this handler.

Profiles

The structure of profiles (parameter profiles of setup_logging).

<profile_name>:
  
  filters:
    <filter_name>:
      class: <filter_class>
      <filter_attribute_name>: <filter_attribute_value>
  
  formatters:
    <formatter_name>:
      class: <formatter_class>
      <formatter_attribute_name>: <formatter_attribute_value>
  
  handlers:
    <handler_name>:
      class: <handler_class>
      <handler_attribute_name>: <handler_attribute_value>

  loggers:
    <logger_name>|root:   # definition of root logger
      level: <log_level>
      handlers: 
        - <name_of_handler>|<definition_of_handler>
      disabled: True|False    # default: False
      propagate: True|False   # default: True
      meta: <logger_metadata>  

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

loggate-1.0.0.tar.gz (14.3 kB view details)

Uploaded Source

Built Distribution

loggate-1.0.0-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

File details

Details for the file loggate-1.0.0.tar.gz.

File metadata

  • Download URL: loggate-1.0.0.tar.gz
  • Upload date:
  • Size: 14.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.0 CPython/3.9.13 Linux/5.15.0-1019-azure

File hashes

Hashes for loggate-1.0.0.tar.gz
Algorithm Hash digest
SHA256 2edf6a71b1d5f873063311f133226bf8a6793831c0264e8ed71c7d8535a94321
MD5 1f5e1c8eab454bcde572375ebe74a40e
BLAKE2b-256 1a6f7b6b8c0d46964436c3375a268b48f7173088550ed6efc065a24805ae6629

See more details on using hashes here.

File details

Details for the file loggate-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: loggate-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.0 CPython/3.9.13 Linux/5.15.0-1019-azure

File hashes

Hashes for loggate-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f8e57f00c468aee7a59e5f2c9dc1b6ece99450e9d3d4270ababf24dcd65fc535
MD5 51739a73b78b62d66c43dc3c7d0ec1a6
BLAKE2b-256 517dc3a42e17b018631b3a5c0aeb51061e9396c12550c23fd96f602b8eb1d70b

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