Metadata-Version: 1.1
Name: loggly-handler
Version: 0.1.1
Summary: Python logging handler that sends messages to Loggly
Home-page: https://github.com/kennedyj/loggly-handler/
Author: Josh Kennedy
Author-email: kennedy.josh@gmail.com
License: MIT
Description: Pyhton Logging Loggly Handler
        -----------------------------
        
        [![Build Status](https://travis-ci.org/kennedyj/loggly-handler.png?branch=master)](https://travis-ci.org/kennedyj/loggly-handler) [![Coverage Status](https://coveralls.io/repos/kennedyj/loggly-handler/badge.png?branch=master)](https://coveralls.io/r/kennedyj/loggly-handler?branch=master)
        
        A simple Pyhton logging Loggly handler that can be used to send to a Loggly gen 1 https endpoint. Borrowed the extra fields concept from the graypy logging library.
        
        ## Configuration
        
        Excerpt for the json logging configuration.
        
            {
              "handlers": {
                "loggly": {
                  "class": "loggly.handlers.HTTPSHandler",
                  "level": "INFO",
                  "url": "https://logs.loggly.com/inputs/MY-INPUT",
                  "facility": "my-app-name"
                }
              }
            }
        
        Adding the handler to a logger
        
            logger = logging.getLogger(__name__)
            handler = loggly.handlers.HTTPSHandler('https://logs.loggly.com/inputs/MY-INPUT')
            logger.addHandler(handler)
            logger.setLevel(logging.DEBUG)
        
            logger.info('sent to loggly')
        
Keywords: loggly logging handler https
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
