Skip to main content

A python wrapper for the Logentries API

Project description

https://travis-ci.org/ambitioninc/python-logentries-api.png https://coveralls.io/repos/ambitioninc/python-logentries-api/badge.png?branch=master

python-logentries-api

This is a Python wrapper for the Logentries API. The API object terms follow the semantics from the Logentries website, not the Logentries API.

The InactivityAlert and AnomalyAlert classes simulate a user login to create the appropriate alerts.

This is not endorsed or provided by Logentries, and no commercial support is provided.

Example

To create a new tag called ‘user_agent = curl’ and associate it with a log called ‘someset/somelog’:

from logentries_api import Tags, Hooks, Labels, LogSets

label = Labels().create('user_agent = curl')
log = LogSets().get('someset/somelog')
tag = Tags().create(label['sn'])
hook = Hooks().create(
    name=label['title'],
    regexes=['user_agent = /curl\/[\d.]*/'],
    tag_id=tag['id'],
    logs=[log['key']]
)

Installation

To install the latest release, type:

pip install python-logentries-api

To install the latest code directly from source, type:

pip install git+git://github.com/ambitioninc/python-logentries-api.git

Documentation

Full documentation is available at http://python-logentries-api.readthedocs.org

License

MIT License (see LICENSE)

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

python-logentries-api-0.7.tar.gz (13.0 kB view hashes)

Uploaded Source

Built Distribution

python_logentries_api-0.7-py2.py3-none-any.whl (25.7 kB view hashes)

Uploaded Python 2 Python 3

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