A handler for the python logging module that sends logs through any REST-ful API. Fully asyncronous. With Loggly support.
Project description
A simple logging handler for python that will send any logging events out to a RESTful API using HTTP POST requests. Fully asyncronuous using requests-futures, tested for Python 2 & 3, and has support for Loggly.
Installation
pip install restapi-logging-handler
Usage
Import whichever module(s) you need:
from restapi_logging_handler import RestApiHandler from restapi_logging_handler import LogglyHandler
RESTful API Usage
Set your Python logging handler to send logs to a REST-ful API
logger = logging.getLogger(__name__) restapiHandler = RestApiHandler('http://my.restfulapi.com/endpoint/') logger.addHandler(restapiHandler) logger.setLevel(logging.INFO) logger.info("Send this to my RESTful API")
By default, it sends the log data as a JSON object. You can currently change that to send text instead.
restapiHandler = RestApiHandler('http://my.restfulapi.com/endpoint/', 'text')
Loggly Usage
Set your Python logging handler to send logs out to your Loggly account. The LogglyHandler takes as its first argument the custom token given to you when you sign up for a Loggly account. The second argument can be a tag string, or a list of tags to be associated with the log inside of Loggly.
logglyHandler = LogglyHandler('loggly-custom-key', ['tag1','tag2',...])
Testing
Install tox and run it to test against Python 2 and 3.
sudo pip install nose tox
Forking
If you’d like to extend this to include more REST-ful API’s than just Loggly, send me a pull request!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for restapi-logging-handler-0.1.7.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b55aa75d1e12e8f2a6b8580079ee5fcbef4dfb8dad3dc1fa29515839cf67007 |
|
MD5 | 805f7d009c63864d8c9a8f55423bddae |
|
BLAKE2b-256 | 3d2a01b2eac5c0167eee2dbd75a01a1033574d167489c96ff17a96740d10725d |